by blazickjp
A Model Context Protocol server for searching and analyzing arXiv papers
# Add to your Claude Code skills
git clone https://github.com/blazickjp/arxiv-mcp-serverGuides for using mcp servers skills like arxiv-mcp-server.
Last scanned: 4/23/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-04-23T06:07:20.621Z",
"semgrepRan": false,
"npmAuditRan": true,
"pipAuditRan": true
}arxiv-mcp-server is an open-source mcp servers skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by blazickjp. A Model Context Protocol server for searching and analyzing arXiv papers. It has 3,071 GitHub stars.
Yes. arxiv-mcp-server passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/blazickjp/arxiv-mcp-server" and add it to your Claude Code skills directory (see the Installation section above).
arxiv-mcp-server is primarily written in Python. It is open-source under blazickjp on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other MCP Servers skills you can browse and compare side by side. Open the MCP Servers category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh arxiv-mcp-server against similar tools.
No comments yet. Be the first to share your thoughts!
Top skills in this category by stars
Based on votes and bookmarks from developers who liked this skill
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
An MCP server for searching arXiv, downloading papers, reading bounded full text, retrieving original LaTeX by section, following citation graphs, and maintaining research alerts.
It runs locally over stdio by default. Papers and indexes stay on your machine; search, source retrieval, citation graphs, and downloads call their respective external services.
The command-based integrations require uv, which provides uvx. Choose your client below; no repository clone or Python environment setup is required.
Add the MCP server for all projects:
claude mcp add --transport stdio --scope user arxiv -- uvx arxiv-mcp-server
For the richer plugin integration—which installs the MCP connection plus the bundled arXiv research skill—register this repository as a marketplace and install the plugin:
claude plugin marketplace add blazickjp/arxiv-mcp-server
claude plugin install arxiv-mcp-server@arxiv-mcp
Verify the direct MCP installation with claude mcp get arxiv. Restart Claude Code or run /reload-plugins after installing the plugin.
Add the MCP server:
codex mcp add arxiv -- uvx arxiv-mcp-server
Or install the MCP connection and bundled research skill as a Codex plugin:
codex plugin marketplace add blazickjp/arxiv-mcp-server
codex plugin add arxiv-mcp-server@arxiv-mcp
Verify the direct MCP installation with codex mcp get arxiv. Codex CLI, the Codex IDE extension, and Codex in the ChatGPT desktop app share this MCP configuration.
Add the server, approve the discovered tools, and test the saved connection:
hermes mcp add arxiv --command uvx --args arxiv-mcp-server
hermes mcp test arxiv
Use the Add to Kiro, Install in VS Code, or Install in VS Code Insiders button above.
For the richer Kiro Power integration, open the Powers panel, choose Add Custom Power → Import power from GitHub, and enter:
https://github.com/blazickjp/arxiv-mcp-server
The Power installs the MCP connection from mcp.json and adds focused arXiv research guidance. Kiro users who prefer manual configuration can place the generic configuration below in .kiro/settings/mcp.json for one workspace or ~/.kiro/settings/mcp.json for all workspaces.
macOS users can install a bundled .mcpb extension from the latest GitHub release:
arxiv-mcp-server-darwin-arm64-<version>.mcpbarxiv-mcp-server-darwin-x86_64-<version>.mcpbDouble-click the bundle, drag it into Claude Desktop, or open Settings → Extensions → Advanced settings → Install Extension…. The bundle includes the server dependencies and requires CPython 3.11.x.
Add this stdio configuration to clients that accept the mcpServers JSON shape, such as Claude Desktop and Kiro. Other clients may use a top-level servers object, TOML, or their own settings UI; consult the client's MCP documentation.
{
"mcpServers": {
"arxiv": {
"type": "stdio",
"command": "uvx",
"args": ["arxiv-mcp-server"]
}
}
}
The default paper directory is ~/.arxiv-mcp-server/papers. To choose another directory, append "--storage-path", "/absolute/path/to/papers" to args.
For older papers that require PDF conversion, run the package with its PDF extra:
{
"mcpServers": {
"arxiv": {
"type": "stdio",
"command": "uvx",
"args": [
"--from",
"arxiv-mcp-server[pdf]",
"arxiv-mcp-server"
]
}
}
}
The supported package is published on PyPI. An unrelated npm package uses the same name, so do not install this server with npm, pnpm, or npx arxiv-mcp-server.
uvx reuses cached tool environments. Force it to resolve the current PyPI release with a supported interpreter, then restart your MCP client:
uvx --python 3.11 --refresh-package arxiv-mcp-server arxiv-mcp-server
If your client still launches an older environment, add "--python", "3.11" before "arxiv-mcp-server" in its args array.
uvxDesktop applications do not always inherit the same PATH as your terminal. If uvx arxiv-mcp-server works in a terminal but the client reports that the server failed to connect, find the executable's absolute path:
# macOS and Linux
command -v uvx
# Windows PowerShell
(Get-Command uvx).Source
Replace "command": "uvx" with the returned absolute path, then restart the client. Keep the args value unchanged.
To place arxiv-mcp-server on your PATH instead of launching it through uvx:
uv tool install arxiv-mcp-server
If the command is not immediately available, run uv tool update-shell and restart the terminal. Afterward, use "command": "arxiv-mcp-server" and omit the package name from args.
The repository now packages the same MCP server and research skill for both major plugin systems:
| Integration | Manifest | Marketplace |
|---|---|---|
| Claude Code | .claude-plugin/plugin.json |
.claude-plugin/marketplace.json |
| OpenAI Codex / ChatGPT Work | .codex-plugin/plugin.json |
.agents/plugins/marketplace.json |
| Kiro Power | POWER.md |
mcp.json |
| Shared MCP launch | .mcp.json for Claude and repository-local clients; .codex-mcp.json for Codex plugins |
uvx arxiv-mcp-server |
| Shared research workflow | skills/arxiv-mcp-server/SKILL.md |
Installed with either plugin |
Direct MCP installation is the shortest path. Install the plugin when you also want the research workflow that steers the client toward focused searches, bounded reads, citation traversal, and section-level LaTeX retrieval.
The server currently exposes 19 tools.
| Tool | Purpose | Notes |
|---|---|---|
search_papers |
Search arXiv by query, category, date, and sort order | Default ≤5 compact results (abstract_mode=snippet); remote arXiv API |
get_abstract |
Fetch metadata and an abstract by arXiv ID | Does not download the paper |
download_paper |
Download and convert a paper to local Markdown | HTML first; PDF fallback uses [pdf]; force=true re-fetches; content bounded to 12,000 chars by default |
list_papers |
List papers stored locally | Returns id, title, authors, published; compact for IDs only |
read_paper |
Read locally stored paper content | Bounded to 12,000 chars by default; supports start/max_chars/return_full_text |
get_paper_outline |
Paginated markdown heading outline | Stable hierarchical section IDs |
read_paper_section |
Read one bounded markdown section | By outline ID or unique title |
search_paper_text |
Bounded passage search in a paper | Source offsets; no Torch required |
get_paper_latex |
Retrieve bounded author-submitted LaTeX | Remote arXiv source archive |
list_paper_latex_sections |
Return a paginated LaTeX outline | Supports start and max_sections |
get_paper_latex_section |
Read one bounded LaTeX section | Select by outline ID or exact title |
citation_graph |
Fetch references and citing papers | Remote Semantic Scholar API; optional SEMANTIC_SCHOLAR_API_KEY |
export_citations |
Export BibTeX for one or more arXiv IDs | Au |