A Rust-based MCP server for searching arXiv academic papers
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-arxiv-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Rust-based MCP server for searching arXiv academic papers
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in education
A Model Context Protocol server for searching and analyzing arXiv papers
📖 MCP server for fetch deepwiki.com and get latest knowledge in Cursor and other Code Editors
Open source implementation and extension of Google Research’s PaperBanana for automated academic figures, diagrams, and research visuals, expanded to new domains like slide generation.
Model Context Protocol (MCP) Server to connect your AI with any MediaWiki
MCP Security Weekly
Get CVE alerts and security updates for Mcp Arxiv Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Rust製のarXiv論文検索MCP (Model Context Protocol) サーバーです。公式Rust MCP SDK (rmcp 1.5) を使用しています。
cargo build --release
ビルド後のバイナリは target/release/mcp-arxiv-server に生成されます。
Claude Codeに登録します。バイナリの絶対パスが必要なので、プロジェクトのルートで pwd を実行して確認してください。
# プロジェクトルートで絶対パスを確認
pwd
# 例: /Users/you/Desktop/mcp-arxiv-server
# 上で確認したパスを使って登録
claude mcp add arxiv /Users/you/Desktop/mcp-arxiv-server/target/release/mcp-arxiv-server
登録後、Claude Codeで以下のように依頼できます。
search_arxiv ツールが自動的に呼び出されます。
MCP Inspector を使って動作確認できます。<絶対パス> の部分は上記 pwd で確認したパスに置き換えてください。
npx @modelcontextprotocol/inspector <絶対パス>/target/release/mcp-arxiv-server
Inspector UIを開き、ツール一覧から search_arxiv を実行してレスポンスを確認してください。
search_arxiv指定したクエリに一致するarXiv論文を検索します。
パラメータ:
| 名前 | 型 | 必須 | デフォルト | 説明 |
|---|---|---|---|---|
query | string | はい | — | 検索クエリ(キーワード、著者、タイトル等) |
max_results | number | いいえ | 5 | 取得する最大件数(最大20) |
レスポンス: 論文の配列。各要素のフィールドは arxiv_id, title, authors, abstract, url, pdf_url, published_date, categories。
本サーバーは公開されている arXiv API を利用しています。arXivのガイドラインに従い、以下にご留意ください。
MITライセンスです。詳細は LICENSE ファイルを参照してください。