Back to Apps

PDF MCP
by jztan
Surgical PDF access for AI agents with hybrid search, OCR, and chunked reading to avoid context overflow.
0 stars
Works in:VS Code CopilotCodex
Exposes:Tools
What it does
PDF MCP provides AI agents with precise access to PDF documents. Instead of flooding the context window with raw text, it allows agents to search, skim, and extract specific pages, tables, and images from large PDFs using a combination of keyword and semantic search.
Tools
pdf_info: Get page count, metadata, and TOC summary.pdf_search: Perform hybrid RRF search (keyword + semantic) to find relevant sections.pdf_read_pages: Extract text, tables, and images from specific page ranges with optional OCR.pdf_render_pages: Render pages as PNGs for vision models.pdf_read_all: Read the entire document (byte-capped).pdf_get_toc: Retrieve full table of contents.pdf_cache_stats: View document cache usage.pdf_cache_clear: Clear cached document data.server_info: Check active optional features like OCR or semantic search.
Installation
{
"mcpServers": {
"pdf-mcp": {
"command": "pdf-mcp"
}
}
}
Supported hosts
Claude Desktop, Claude Code, VS Code Copilot, Codex CLI, Kiro
Quick install
pip install pdf-mcpInformation
- Pricing
- free
- Published
- 6/13/2026
- stars
- 0
Categories
Choose your AI client and follow the steps below.
Codex
Add to ~/.codex/config.toml: [mcp_servers.pdf-mcp]\ncommand = "pdf-mcp"Claude Desktop
{
"mcpServers": {
"pdf-mcp": {
"command": "pdf-mcp"
}
}
}VS Code Copilot
Add to settings.json: { "github.copilot.chat.mcp.servers": { "pdf-mcp": { "command": "pdf-mcp" } } }





