MCP server for academic paper search
## ArXiv MCP Server: Scientific Research Papers The **ArXiv MCP Server** integrates arXiv preprint repository into Google Antigravity, enabling AI-assisted access to scientific papers, research discovery, and academic literature across physics, mathematics, computer science, and more. ### Why ArXiv MCP? - **Open Access**: Free access to over 2 million research papers - **Cutting Edge**: Latest research before peer review publication - **Multi-Discipline**: Physics, math, CS, biology, economics, and more - **Citation Data**: Access to references and citations - **Full Text**: PDF and LaTeX source access ### Key Features #### 1. Paper Search ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Find recent papers on large language models and transformers" }] ) ``` #### 2. Paper Details ```python # Get paper info response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get abstract and metadata for arXiv paper 2103.14030" }] ) ``` #### 3. Author Search ```python # Find by author response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Find all papers by Yann LeCun on deep learning" }] ) ``` #### 4. Category Browse ```python # Browse categories response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show latest papers in cs.AI category from this week" }] ) ``` ### Configuration ```json { "mcpServers": { "arxiv": { "command": "npx", "args": ["-y", "@anthropic/mcp-server-arxiv"], "env": { "ARXIV_MAX_RESULTS": "50" } } } } ``` ### Use Cases **Research Discovery**: Find relevant papers for research projects. **Literature Review**: Compile papers for systematic reviews. **Staying Current**: Track latest developments in your field. **Citation Research**: Find references and citing papers. The ArXiv MCP Server brings scientific literature into your workflow.
{
"mcpServers": {
"arxiv": {
"mcpServers": {
"arxiv": {
"args": [
"arxiv-mcp-server"
],
"command": "uvx"
}
}
}
}
}