ArXiv + Semantic Scholar MCP Server
Enables searching academic papers, exploring citation graphs, and discovering related research via ArXiv and Semantic Scholar APIs.
README
ArXiv + Semantic Scholar MCP Server
An MCP server that gives Claude (or any MCP client) the ability to search academic papers, explore citation graphs, and discover related research.
Tools
| Tool | Source | Description |
|---|---|---|
search_papers |
ArXiv | Keyword search with category filters and sort options |
get_paper_details |
Semantic Scholar | Full metadata, abstract, TL;DR, citation counts |
get_citations |
Semantic Scholar | Papers that cite a given paper |
get_references |
Semantic Scholar | Papers referenced by a given paper |
get_author |
Semantic Scholar | Author profile with h-index, paper/citation counts |
search_author |
Semantic Scholar | Find authors by name |
get_author_papers |
Semantic Scholar | List an author's publications |
find_related |
Semantic Scholar | Recommended similar papers |
Quick Start
1. Install dependencies
# Using uv (recommended)
cd arxiv-scholar-mcp
uv venv
source .venv/bin/activate # or .venv\Scripts\activate on Windows
uv pip install -e .
# Or using pip
pip install -e .
2. (Optional) Set a Semantic Scholar API key
Without a key, you share rate limits with all unauthenticated users. Request a free key at https://www.semanticscholar.org/product/api#api-key-form
export SEMANTIC_SCHOLAR_API_KEY="your-key-here"
3. Configure Claude Desktop
Add this to your claude_desktop_config.json:
Using uv (recommended):
{
"mcpServers": {
"arxiv-scholar": {
"command": "uv",
"args": [
"--directory", "/ABSOLUTE/PATH/TO/arxiv-scholar-mcp",
"run", "server.py"
],
"env": {
"SEMANTIC_SCHOLAR_API_KEY": "your-key-here"
}
}
}
}
Using python directly:
{
"mcpServers": {
"arxiv-scholar": {
"command": "/ABSOLUTE/PATH/TO/arxiv-scholar-mcp/.venv/bin/python",
"args": ["/ABSOLUTE/PATH/TO/arxiv-scholar-mcp/server.py"],
"env": {
"SEMANTIC_SCHOLAR_API_KEY": "your-key-here"
}
}
}
}
4. Restart Claude Desktop
The tools should now appear in your Claude Desktop conversation.
Example Prompts
- "Search ArXiv for recent papers on diffusion models for protein design"
- "Get details on ArXiv:2301.12345"
- "Who cites the 'Attention Is All You Need' paper?"
- "Find papers related to DOI:10.48550/arXiv.1706.03762"
- "Look up author Yann LeCun and show me his top papers"
- "What are the references in ArXiv:2303.08774?"
Paper ID Formats
The Semantic Scholar tools accept multiple identifier formats:
| Format | Example |
|---|---|
| S2 Paper ID | 649def34f8be52c8b66281af98ae884c09aef38b |
| ArXiv ID | ArXiv:2301.12345 |
| DOI | DOI:10.1038/s41586-021-03819-2 |
| Corpus ID | CorpusID:12345678 |
Testing
You can test the server directly using the MCP Inspector:
cd arxiv-scholar-mcp
npx @modelcontextprotocol/inspector uv run server.py
License
MIT
Thank you to arXiv for use of its open access interoperability. Data source: Semantic Scholar API (https://www.semanticscholar.org/product/api)
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.