Search for scientific papers on arXiv by title and abstract content
Retrieve detailed information about a specific paper including abstract, authors, and links to available formats
Simple arXiv provides LLMs with the ability to search and retrieve scientific papers from arXiv's extensive database. This tool enables AI assistants to find relevant research papers by keyword, retrieve abstracts and metadata, and provide links to full papers in various formats. The server implements proper rate limiting according to arXiv's API guidelines, ensuring responsible usage of the service. With Simple arXiv, AI assistants can help users stay up-to-date with the latest research in their field without leaving the conversation.
The easiest way to install Simple arXiv is through Smithery:
npx -y @smithery/cli install mcp-simple-arxiv --client claude
You can also install the package manually using pip:
pip install mcp-simple-arxiv
After installation, you'll need to configure your AI client to use the Simple arXiv MCP server.
Add the following configuration to your claude_desktop_config.json
file:
macOS:
{
"mcpServers": {
"simple-arxiv": {
"command": "python",
"args": ["-m", "mcp_simple_arxiv"]
}
}
}
Windows:
{
"mcpServers": {
"simple-arxiv": {
"command": "C:\\Users\\YOUR_USERNAME\\AppData\\Local\\Programs\\Python\\Python311\\python.exe",
"args": [
"-m",
"mcp_simple_arxiv"
]
}
}
}
After adding the configuration, restart Claude Desktop for the changes to take effect.
Once configured, you can use Simple arXiv through natural language requests to your AI assistant. Here are some examples:
You can search for papers by asking questions like:
Once you have a paper ID (usually in the format YYMM.NNNNN), you can request more details:
The response will include the paper's title, authors, publication date, abstract, and links to available formats (PDF/HTML).
If you encounter issues:
pip list | grep mcp-simple-arxiv
)