Install
$ agentstack add mcp-chunsu1002-mcp-arxiv-server ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
mcp-arxiv-server
[](LICENSE)
Rust製のarXiv論文検索MCP (Model Context Protocol) サーバーです。公式Rust MCP SDK (rmcp 1.5) を使用しています。
必要環境
- Rust 1.85以上
- MCP対応クライアント(Claude Code、MCP Inspector など)
ビルド
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で以下のように依頼できます。
- 「arXivで拡散モデルの最新論文を検索して」
- 「RAG関連のarXiv論文を10件調べて」
- 「Yann LeCunの自己教師あり学習に関するarXiv論文を探して」
search_arxiv ツールが自動的に呼び出されます。
MCP Inspectorによる動作確認
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 API を利用しています。arXivのガイドラインに従い、以下にご留意ください。
- リクエスト間隔は 3秒に1リクエスト程度 を上限の目安に
- 大規模な自動クロールは避ける
- 本プロジェクトはarXiv側のレート制限に依存しており、クライアント側のスロットリングは実装していません
ライセンス
MITライセンスです。詳細は [LICENSE](LICENSE) ファイルを参照してください。
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: chunsu1002
- Source: chunsu1002/mcp-arxiv-server
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.