ArXiv + Semantic Scholar MCP Server
Allows searching academic papers on ArXiv with keyword search, category filters, and sort options.
Provides tools to retrieve full paper metadata, abstracts, TL;DRs, citation counts, and explore citation graphs (citations, references), author profiles with h-index, and related papers via the Semantic Scholar API.
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 + Semantic Scholar MCP ServerFind papers that cite 'Attention Is All You Need'"
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 + 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 |
| ArXiv | Keyword search with category filters and sort options |
| Semantic Scholar | Full metadata, abstract, TL;DR, citation counts |
| Semantic Scholar | Papers that cite a given paper |
| Semantic Scholar | Papers referenced by a given paper |
| Semantic Scholar | Author profile with h-index, paper/citation counts |
| Semantic Scholar | Find authors by name |
| Semantic Scholar | List an author's publications |
| Semantic Scholar | Recommended similar papers |
Related MCP server: Research Paper Ingestion MCP Server
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 |
|
ArXiv ID |
|
DOI |
|
Corpus ID |
|
Testing
You can test the server directly using the MCP Inspector:
cd arxiv-scholar-mcp
npx @modelcontextprotocol/inspector uv run server.pyLicense
MIT
Thank you to arXiv for use of its open access interoperability. Data source: Semantic Scholar API (https://www.semanticscholar.org/product/api)
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/RaggedR/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server