pdf-image-extractor-mcp
Extracts images from PDF files, allowing LLMs to access and analyze embedded images from local PDF documents.
README
PDF Image Extractor MCP Server
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.
Quick Start
You can run this server directly using uvx (part of the uv toolkit). No manual installation required.
uvx pdf-image-extractor-mcp@latest
Configuration
Claude Desktop app
To 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"]
}
}
}
Cursor
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:
VS Code
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"]
}
}
}
Claude Code (CLI)
To add this server to Claude Code:
claude mcp add pdf-image-extractor -- uvx pdf-image-extractor-mcp@latest
n8n
To 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).
Development
If you want to contribute or run from source, please see CONTRIBUTING.md.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.