paper-intelligence
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@paper-intelligencesearch for 'transformer architecture' in my processed papers"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Paper Intelligence
A local MCP server for intelligent paper/PDF management. Convert PDFs to markdown, then search them with hybrid grep + semantic search. Designed for token efficiency: search first, read only what you need.
🚀 Quick Start
1. Install UV (one-time setup)
curl -LsSf https://astral.sh/uv/install.sh | sh2. Add to Your MCP Client
Claude Code CLI:
claude mcp add paper-intelligence -- uvx paper-intelligence@latestVS Code:
code --add-mcp '{"name":"paper-intelligence","command":"uvx","args":["paper-intelligence@latest"]}'That's it! uvx handles everything automatically. Using @latest ensures you always get the newest version.
Related MCP server: rag-paper
🔌 MCP Client Integration
Add to your Claude Desktop config:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"paper-intelligence": {
"command": "uvx",
"args": ["paper-intelligence@latest"]
}
}
}Go to Settings → MCP → Add new MCP Server
Select
commandtypeEnter:
uvx paper-intelligence@latest
Or add to ~/.cursor/mcp.json:
{
"mcpServers": {
"paper-intelligence": {
"command": "uvx",
"args": ["paper-intelligence@latest"]
}
}
}Any MCP-compatible client can use paper-intelligence:
{
"mcpServers": {
"paper-intelligence": {
"command": "uvx",
"args": ["paper-intelligence@latest"]
}
}
}✨ Features
PDF to Markdown — High-accuracy conversion using Marker
Hybrid Search — Combined grep (exact/regex) + semantic RAG search
Token Efficient — Search papers instead of reading entire documents
GPU Acceleration — MPS (Apple Silicon) and CUDA support
Self-Contained — Each paper gets its own directory with all data
Header Context — Search results show document structure (e.g., "Methods > Data Collection")
📖 MCP Tools
search
Search one or more explicitly requested PDFs, processed paper directories, or library
directories with grep, rag, or hybrid mode. Direct PDF searches never inspect
sibling files or directories.
Parameters:
query(string): Text, regex, or semantic querysources(array): PDF paths, paper directories, or an explicitly selected library directorymode(string, optional):"grep","rag", or"hybrid"(default: hybrid)top_k(integer, optional): Number of results (default: 5)regex(boolean, optional): Treat the grep query as a regex (default: false)
A new or incomplete PDF is converted, indexed, and embedded in the background because this normally takes 1–3 minutes, longer than the roughly 30-second deadline used by many MCP clients. The first call returns promptly:
{
"success": true,
"status": "processing",
"message": "First-use processing ... is continuing in the background.",
"processing": [{
"paper_dir": "/path/to/paper",
"retry_after_seconds": 30,
"next_step": "Call get_paper_info ..."
}]
}Processing continues after that response. Poll get_paper_info using paper_dir; when
it reports status: "ready", retry the original search. Already-processed grep searches
do not initialize the semantic model. RAG and hybrid searches initialize it when needed.
Search no longer performs an unconditional remote-library sync, which previously allowed
a local query to block for up to five minutes.
get_paper_info
Check a paper's processing state without loading the embedding model. Pass either the
paper directory returned by search or the original PDF path.
Statuses are queued, processing, ready, incomplete, or failed. Failed responses
include the background job's error message. A ready response includes artifact presence,
metadata, and a lightweight local chunk count when available.
📊 Example Output
Search Result
{
"source": "attention-is-all-you-need.md",
"line_number": 142,
"header_path": "Model Architecture > Attention",
"content": "An attention function can be described as mapping a query and a set of key-value pairs to an output...",
"score": 0.89
}🎯 Typical Workflow
Process a paper:
Process the PDF at ~/Downloads/transformer-paper.pdf
Search across papers:
Search for "positional encoding" in my papers
Read specific sections:
Show me the Methods section from the transformer paper
The agent reads search results (a few hundred tokens) instead of entire papers (tens of thousands of tokens).
🛠️ Installation Options
# Install with pip
pip install paper-intelligence
# Or run directly with uvx (no install needed)
uvx paper-intelligence@latestpip install "paper-intelligence @ git+https://github.com/Strand-AI/paper-intelligence.git"git clone https://github.com/Strand-AI/paper-intelligence.git
cd paper-intelligence
# Create virtual environment
python3.11 -m venv .venv
source .venv/bin/activate
# Install in development mode
pip install -e ".[dev]"
# Run the server
python -m paper_intelligence.serverDevelopment MCP config:
{
"mcpServers": {
"paper-intelligence": {
"command": "python",
"args": ["-m", "paper_intelligence.server"],
"cwd": "/path/to/paper-intelligence"
}
}
}Run tests:
# Unit tests (fast)
pytest tests/test_markdown_parser.py
# Integration tests (slow, requires ML models)
pytest tests/test_integration.py -v🔧 Debugging
Use the MCP Inspector to debug the server:
npx @modelcontextprotocol/inspector uvx paper-intelligence@latest🆘 Troubleshooting
Ensure Python 3.11+ is installed
Try
uvx paper-intelligence@latestdirectly to see error messagesCheck that all dependencies installed correctly
Add to your MCP config:
"env": {
"PYTHONIOENCODING": "utf-8"
}Claude Desktop only reads configuration on startup. Fully restart the app after config changes.
🏗️ Technical Stack
Component | Technology |
MCP Server | Official Python SDK with FastMCP |
PDF Conversion | |
Embeddings | LlamaIndex + HuggingFace (BAAI/bge-small-en-v1.5) |
Vector Store | ChromaDB (persistent, local per-paper) |
GPU Support | PyTorch with MPS (Apple) or CUDA |
🙏 Acknowledgments
Marker for excellent PDF conversion
LlamaIndex for the RAG framework
ChromaDB for the vector database
FastMCP for the MCP server framework
📄 License
MIT — see LICENSE for details.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Hosted MCP server: convert PDFs to clean, LLM-ready Markdown with tables, formulas and OCR.
Personal knowledge base MCP server with semantic search, auto-categorization, metadata extraction
Self-hosted AI-native knowledge workspace with hybrid search, GraphRAG, and MCP.
Token-efficient MCP memory for Markdown vaults. Tiered search, GraphRAG, AI memories.
Related MCP Servers
- AlicenseAqualityBmaintenanceA local-first MCP server that ingests PDFs, extracts structure, and provides semantic search and sequential navigation tools for AI clients to query and learn from documents.10MIT
- AlicenseNot gradedqualityAmaintenanceA local-first paper RAG server that enables searching and managing academic PDFs via MCP tools, supporting metadata enrichment and citation graphs.1MIT
- AlicenseNot gradedqualityBmaintenanceA local-first MCP server for building and querying PDF knowledge bases. It indexes PDFs into DuckDB and exposes evidence-grounded retrieval tools to separate corpus-backed answers from independent reasoning.123MIT
- AlicenseNot gradedqualityAmaintenanceMCP server for local RAG over personal notes, PDFs, and documents, enabling plain-English querying and hybrid search with multi-hop context expansion.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Strand-AI/paper-intelligence'
If you have feedback or need assistance with the MCP directory API, please join our Discord server