Loading...

An MCP server providing access to arXiv papers via their API, enabling search, metadata retrieval, and full-text access for LLM clients.
Boost this tool
Subscribe to listing upgrades or segmented pushes.
An MCP server providing access to arXiv papers via their API, enabling search, metadata retrieval, and full-text access for LLM clients.
This server is relatively safe due to its read-only nature and adherence to arXiv API rate limits. The primary risk stems from its reliance on the external arXiv API. It is safe to use for information retrieval but could be affected by arXiv API outages or security breaches.
Performance is limited by the arXiv API's response times and rate limits. The server is single-threaded, so concurrent requests will be processed sequentially.
Cost is primarily related to network bandwidth and potential charges from the arXiv API if usage is excessive. However, the arXiv API is generally free for reasonable use.
npx -y @smithery/cli install mcp-simple-arxiv --client claude{
"mcpServers": {
"simple-arxiv": {
"command": "python",
"args": ["-m", "mcp_simple_arxiv"]
}
}
}search_arxivSearches arXiv for papers based on keywords, date ranges, and sorting criteria.
Read-only operation; retrieves data from arXiv without modifying it.
get_paper_detailsRetrieves detailed metadata and abstract for a specific arXiv paper by its ID.
Read-only operation; retrieves paper details without modification.
get_paper_contentRetrieves the full text of an arXiv paper as Markdown, converted from PDF.
Read-only operation; retrieves paper content without modification.
browse_categoriesLists and searches arXiv subject categories.
Read-only operation; retrieves category information without modification.
None
local
This server is relatively safe due to its read-only nature and adherence to arXiv API rate limits. The primary risk stems from its reliance on the external arXiv API. It is safe to use for information retrieval but could be affected by arXiv API outages or security breaches.
The server operates in a read-only mode, limiting the scope of autonomous actions. No destructive operations are possible.
Production Tip
Monitor the server's logs for rate limiting errors and adjust query frequency accordingly.
The server is configured to make a maximum of 1 request per 3 seconds to comply with arXiv API guidelines.
No, this server is designed for targeted searches and retrieval of individual papers, not bulk downloading.
No, this server does not require any authentication to access the arXiv API.
The server provides links to PDF and HTML formats, and can also convert the PDF content to Markdown.
You can specify a date range in your search query to filter results by publication date.
Yes, you can sort search results by submission date, update date, or relevance.
Yes, the server is free to use, but it relies on the arXiv API, which is also generally free for reasonable use.