PageIndex MCP (Beta)
Chat with long PDFs on your favorite LLM apps (e.g., Claude Desktop, Cursor) — no context-window limits.
How to use: Simply add the file to PageIndex before you start asking questions.
Example: Add https://arxiv.org/pdf/2507.13334 to PageIndex.
PageIndex MCP is free during the beta testing phase.

Quick Setup
We provide two options to use PageIndex MCP:
- Option 1 uses a remote MCP server for quick setup
- Option 2 provides local PDF upload capabilities
You need to get your 🔑 API key to configure PageIndex MCP services.
Option 1: Remote MCP Server
Add to your MCP configuration:
{
"mcpServers": {
"pageindex": {
"type": "http",
"url": "https://dash.pageindex.ai/api/mcp",
"headers": {
"Authorization": "Bearer <YOUR_PAGEINDEX_API_KEY>"
}
}
}
}
Option 2: Local MCP Server (with local PDF upload)
Add to your MCP configuration (require Node.js ≥18.0.0):
{
"mcpServers": {
"pageindex": {
"command": "npx",
"args": ["-y", "pageindex-mcp"],
"env": {
"PAGEINDEX_API_KEY": "<YOUR_PAGEINDEX_API_KEY>"
}
}
}
}
Last updated on