Search, read, and reason over scientific papers. Powered by MCP, ChromaDB, and local embeddings — no API keys required.
git clone https://github.com/rishimule/arxiv-intelligence-mcp.git && cd arxiv-intelligence-mcp && uv sync
Connect to Claude Desktop or Cursor and start exploring the scientific literature with natural language.
Query ArXiv's entire database with natural language. Results are ranked by relevance with full metadata.
Download PDFs and convert them to clean Markdown using IBM DocLing. Every figure and table preserved.
Papers are chunked and embedded locally with sentence-transformers. No API keys, no data leaves your machine.
Ask questions about your ingested library. Answers are grounded in actual paper content with cited sources.
A clean pipeline from your AI assistant to the scientific literature and back.
Four endpoints that give your AI assistant full research capabilities.
| Type | Name | Description |
|---|---|---|
| Tool | search_arxiv | Search ArXiv papers by query, sorted by relevance |
| Tool | ingest_paper | Download, process, and embed a paper into local storage |
| Tool | ask_paper | RAG query across your ingested paper library |
| Resource | research://library | List all papers currently in your library |
A natural four-step research workflow, driven entirely by conversation.
"Find the top 3 papers on vision transformers"
"Read the second paper and add it to my library"
"Explain the architecture described in that paper"
"Compare this approach to standard transformers"
Three commands. No API keys. Fully local embeddings.
# Clone and install
$ git clone https://github.com/rishimule/arxiv-intelligence-mcp.git
$ cd arxiv-intelligence-mcp
$ uv sync
# (Optional) Copy environment config
$ cp .env.example .env
# Start the MCP server
$ uv run arxiv-intelligence-mcp
{
"mcpServers": {
"arxiv-intelligence": {
"command": "/path/to/.venv/bin/python",
"args": ["-m", "arxiv_mcp.main"],
"cwd": "/path/to/arxiv-intelligence-mcp",
"env": { "PYTHONPATH": "src" }
}
}
}
Modern Python tooling with local-first architecture.