Connections & Capabilities
Connects To
Capabilities
Quickstart
Install
npx -y @smithery/cli install arxiv-mcp-server --client claudeConfig
{
"mcpServers": {
"arxiv-mcp-server": {
"command": "uv",
"args": [
"tool",
"run",
"arxiv-mcp-server",
"--storage-path", "/path/to/paper/storage"
]
}
}
}Exposed MCP Tools (4)
search_papersSearches arXiv for papers based on a query and optional filters.
Read-only operation, no modification of data.
download_paperDownloads a paper from arXiv given its ID.
Downloads a file to local storage; no modification of data.
list_papersLists all papers currently stored in the local storage.
Read-only operation, no modification of data.
read_paperReads the content of a downloaded paper from local storage.
Read-only operation, no modification of data.
Safety Assessment
The ArXiv MCP Server is relatively safe due to its read-only nature and local storage of papers. However, ensure the storage path is secured and monitor for potential denial-of-service attacks. It is safe to use when the local storage is properly configured and the arXiv API remains secure. It is risky if the storage path is exposed or the server is subjected to excessive requests.
- Read-only access to arXiv papers.
- Papers are downloaded to a local storage, limiting external network calls after initial download.
- No user authentication or authorization is required.
- No modification of arXiv data is possible.
- Local storage path needs to be properly secured to prevent unauthorized access to downloaded papers.
- Potential for denial-of-service if the server is overwhelmed with requests.
- The server relies on the availability and security of the arXiv API.
- Improperly configured storage path could lead to data leakage.
