a
arXiv
Search arXiv papers and abstracts.
·No reviews yet
Share:
About
Auto-generated
arXiv is a Model Context Protocol server in the Search & Web category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
web_search
Search the web and return top results
fetch_url
Fetch and return the contents of a URL
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about arXiv.
- What is the arXiv Model Context Protocol (MCP) server?
- The arXiv MCP server enables searching for research papers and abstracts hosted on arXiv. It allows integration with MCP clients to directly access arXiv content and metadata through standardized interfaces.
- How can I install the arXiv MCP server in a client like Claude Desktop?
- To install, clone the GitHub repository 'https://github.com/blazickjp/arxiv-mcp-server'. Follow the client's instructions for adding a local MCP server, typically by specifying the repository path or local executable. Specific steps depend on the MCP client deployment.
- Does the arXiv MCP server require an API key or other credentials?
- No, the arXiv MCP server does not require an API key, OAuth, or any other authentication credentials. It connects directly to the public arXiv service, which is accessible without authentication.
- What are the primary capabilities of the arXiv MCP server?
- The primary capability is searching for arXiv papers and their abstracts. Users can query the arXiv database to retrieve relevant research articles and their summaries, facilitating direct information access within an MCP client.
- Is there any cost associated with using the arXiv MCP server?
- The arXiv MCP server itself is open-source and free to use, as is the underlying arXiv service. Any costs would be related to your personal computing infrastructure or the MCP client you choose to use.
- Are there any limitations or prerequisites for using the arXiv MCP server?
- A key limitation is that it only provides search and abstract retrieval; full paper downloads or advanced features are not directly supported through this basic MCP. It relies on the arXiv public API, so query limits might apply, depending on the usage by the client.
Install arXiv
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"arxiv": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-arxiv"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"arxiv": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-arxiv"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"arxiv": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-arxiv"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.