What is the io.github.jztan/pdf-mcp MCP server?
Production-ready MCP server for PDF processing with intelligent caching.
How to install io.github.jztan/pdf-mcp
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
PDF_MCP_CACHE_DIRDirectory for storing PDF cache (default: ~/.cache/pdf-mcp)
PDF_MCP_CACHE_TTLCache time-to-live in hours (default: 24)
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"pdf-mcp": {
"command": "uvx",
"args": [
"pdf-mcp"
],
"env": {
"PDF_MCP_CACHE_DIR": "<YOUR_PDF_MCP_CACHE_DIR>",
"PDF_MCP_CACHE_TTL": "<YOUR_PDF_MCP_CACHE_TTL>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"pdf-mcp": {
"command": "uvx",
"args": [
"pdf-mcp"
],
"env": {
"PDF_MCP_CACHE_DIR": "<YOUR_PDF_MCP_CACHE_DIR>",
"PDF_MCP_CACHE_TTL": "<YOUR_PDF_MCP_CACHE_TTL>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"pdf-mcp": {
"command": "uvx",
"args": [
"pdf-mcp"
],
"env": {
"PDF_MCP_CACHE_DIR": "<YOUR_PDF_MCP_CACHE_DIR>",
"PDF_MCP_CACHE_TTL": "<YOUR_PDF_MCP_CACHE_TTL>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"pdf-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"pdf-mcp"
],
"env": {
"PDF_MCP_CACHE_DIR": "<YOUR_PDF_MCP_CACHE_DIR>",
"PDF_MCP_CACHE_TTL": "<YOUR_PDF_MCP_CACHE_TTL>"
}
}
}
}Claude Code
claude mcp add pdf-mcp --env PDF_MCP_CACHE_DIR=<YOUR_PDF_MCP_CACHE_DIR> --env PDF_MCP_CACHE_TTL=<YOUR_PDF_MCP_CACHE_TTL> -- uvx pdf-mcpRelated MCP servers
MCP server that lets AI assistants manage Redmine issues, projects, wikis, and time tracking
View repository →