A Model Context Protocol (MCP) server that extracts images from PDF files. Run this locally to let LLMs access and analyze images embedded within your local PDF documents.
You can run this server directly using uvx (part of the uv toolkit). No manual installation required.
uvx pdf-image-extractor-mcp@latestTo use this with the Claude Desktop app, add the following to your claude_desktop_config.json:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"pdf-image-extractor": {
"command": "uvx",
"args": ["pdf-image-extractor-mcp@latest"]
}
}
}To add this to Cursor:
- Open Cursor Settings.
- Go to Features -> MCP.
- Click + Add New MCP Server.
- Enter the following:
- Name:
pdf-image-extractor - Type:
stdio(or Command) - Command:
uvx pdf-image-extractor-mcp@latest
- Name:
If you are using the MCP Extension for VS Code (or a compatible AI extension):
Create or edit .vscode/mcp.json in your project root:
{
"mcpServers": {
"pdf-image-extractor": {
"command": "uvx",
"args": ["pdf-image-extractor-mcp@latest"]
}
}
}To add this server to Claude Code:
claude mcp add pdf-image-extractor -- uvx pdf-image-extractor-mcp@latestTo use this with n8n:
Note: n8n typically connects to MCP servers via HTTP (SSE), not local commands (stdio). To use this server with n8n, you must run it behind a generic SSE adapter.
- Install the n8n-nodes-mcp community node in your n8n instance.
- Run this server wrapped in an SSE transport (using a tool like
mcp-proxyorstdio-to-sse). - Configure the n8n MCP Client node to point to your local SSE port (e.g.,
http://localhost:3000/sse).
If you want to contribute or run from source, please see CONTRIBUTING.md.