arXiv Discovery MCP
Allows discovery, triage, and monitoring of arXiv papers with search, browsing, collections, and interest-based ranking.
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., "@arXiv Discovery MCPsearch for papers on attention mechanisms"
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.
arXiv Discovery MCP
MCP server for arXiv paper discovery, triage, and monitoring with inspectable ranking.
What This Is
arXiv Discovery MCP is a research discovery substrate inspired by arxiv-sanity. It helps researchers and AI agents discover, triage, and monitor arXiv papers through the Model Context Protocol (MCP) -- exposing tools, resources, and prompts that integrate directly into Claude Desktop, Claude Code, or any MCP-compatible client.
Unlike "chat with papers" wrappers, this system provides explicit interest modeling, inspectable ranking explanations, and structured workflow state. You build an interest profile from seed papers, followed authors, and saved queries. The system uses that profile to rank search results, surface new papers, and explain why each result scored the way it did.
The project tracks content provenance and respects reuse constraints per content type. All ranking signals are transparent: you can see exactly which interest signals contributed to each paper's score.
Related MCP server: research-mcp
Features
MCP Tools (13)
Discovery
search_papers-- Full-text search with optional profile-ranked resultsbrowse_recent-- Browse recent papers by arXiv categoryfind_related_papers-- Find papers related to one or more seed papersget_paper-- Retrieve full metadata for a single paper
Workflow
triage_paper-- Mark papers as shortlisted, seen, or dismissedadd_to_collection-- Add papers to named collections (auto-creates)create_watch-- Create a saved query that monitors for new papers
Interest & Enrichment
add_signal-- Add an interest signal (seed paper, followed author, etc.)batch_add_signals-- Add multiple interest signals at oncecreate_profile-- Create a named interest profilesuggest_signals-- Get profile expansion suggestions based on usage patternsenrich_paper-- Fetch citation counts, FWCI, and topics from OpenAlex
Content
get_content_variant-- Retrieve paper content (abstract, HTML, or PDF-to-markdown) with rights gating
MCP Resources (4)
paper://{arxiv_id}-- Paper metadata, triage state, enrichment, and content variantscollection://{slug}-- Collection contents with paginationprofile://{slug}-- Interest profile with all signalswatch://{slug}/deltas-- New papers since last check
MCP Prompts (3)
daily-digest-- Workflow guidance for reviewing new papers across watchesliterature-map-from-seeds-- Workflow for building a literature map from seed paperstriage-shortlist-- Workflow for reviewing and triaging a collection
CLI
All MCP capabilities are mirrored in a full CLI (arxiv-mcp) for terminal workflows, scripting, and debugging.
Test Coverage
493 tests passing across ingestion, search, workflow, interest modeling, enrichment, content normalization, and MCP integration.
Prerequisites
Python 3.13+ (uses 3.13 language features)
PostgreSQL 16+ (must be running and accessible)
Git (for cloning the repository)
Installation
git clone https://github.com/loganrooks/arxiv-sanity-mcp.git
cd arxiv-sanity-mcp
# Create and activate a virtual environment (recommended)
python3.13 -m venv .venv
source .venv/bin/activate # Linux/macOS
# .venv\Scripts\activate # Windows
pip install -e .For development (tests, linting):
pip install -e ".[dev]"
# Or manually:
pip install pytest pytest-asyncio pytest-cov pytest-timeout respx ruffNote: The MCP server configuration below requires the absolute path to your venv's Python interpreter. You can find it with
which pythonafter activating the venv.
Database Setup
Create the database user and databases:
sudo -u postgres psql -c "CREATE USER arxiv_mcp WITH PASSWORD 'arxiv_mcp_dev';"
sudo -u postgres psql -c "CREATE DATABASE arxiv_mcp OWNER arxiv_mcp;"
sudo -u postgres psql -c "CREATE DATABASE arxiv_mcp_test OWNER arxiv_mcp;"Create a
.envfile in the project root (or set environment variables):
DATABASE_URL=postgresql+asyncpg://arxiv_mcp:arxiv_mcp_dev@localhost:5432/arxiv_mcpRun database migrations:
alembic upgrade headQuick Start
Once installed and the database is set up, try these commands:
# Harvest a paper by arXiv ID
arxiv-mcp harvest fetch 2301.00001
# Search for papers
arxiv-mcp search query "attention mechanism"
# Browse recent papers in a category
arxiv-mcp search browse --category cs.AI
# Create a collection
arxiv-mcp collection create "reading-list"
# Triage a paper
arxiv-mcp triage mark 2301.00001 shortlistedMCP Server Configuration
Claude Code
Use claude mcp add-json with your venv's absolute Python path:
claude mcp add-json arxiv-discovery --scope local '{
"command": "/absolute/path/to/arxiv-sanity-mcp/.venv/bin/python",
"args": ["-m", "arxiv_mcp.mcp"],
"cwd": "/absolute/path/to/arxiv-sanity-mcp",
"env": {
"DATABASE_URL": "postgresql+asyncpg://arxiv_mcp:arxiv_mcp_dev@localhost:5432/arxiv_mcp"
}
}'Replace /absolute/path/to/arxiv-sanity-mcp with the actual path to your cloned repository.
Important: Use the absolute path to the venv Python binary (e.g.,
/home/user/projects/arxiv-sanity-mcp/.venv/bin/python), not justpython. This ensures the MCP server uses the correct environment regardless of which directory you launch Claude Code from.
Claude Desktop
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"arxiv-discovery": {
"command": "/absolute/path/to/arxiv-sanity-mcp/.venv/bin/python",
"args": ["-m", "arxiv_mcp.mcp"],
"cwd": "/absolute/path/to/arxiv-sanity-mcp",
"env": {
"DATABASE_URL": "postgresql+asyncpg://arxiv_mcp:arxiv_mcp_dev@localhost:5432/arxiv_mcp"
}
}
}
}Replace /absolute/path/to/arxiv-sanity-mcp with the actual path to your cloned repository.
Configuration
Variable | Required | Default | Description |
| Yes |
| PostgreSQL connection string |
| No | (empty) | Email for OpenAlex polite pool (recommended; increases rate limit from 1 to 10 req/s) |
| No | (empty) | OpenAlex API key for enrichment |
| No |
|
|
Design Documents
Architectural documentation is in the docs/ directory:
Document | Description |
Goals and product values | |
Design principles and constraints | |
Retrieval and ranking options explored | |
Systems studied for design inspiration | |
Architectural bets and rationale | |
MCP interface design decisions | |
arXiv data access and licensing | |
Testing methodology | |
Development phases | |
Unresolved design questions | |
External references |
Architecture Decision Records
ADR-0001 -- Exploration-first architecture
ADR-0002 -- Metadata-first, lazy enrichment
ADR-0003 -- License and provenance first
ADR-0004 -- MCP as workflow substrate
See docs/adrs/ for full details.
License
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.
Latest Blog Posts
- 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/loganrooks/arxiv-sanity-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server