Skip to main content
Glama
andybrandt

mcp-simple-arxiv

by andybrandt

mcp-simple-arxiv

鍛冶屋のバッジ

API を通じて arXiv 論文へのアクセスを提供する MCP サーバー。

特徴

このサーバーにより、LLM クライアント (Claude Desktop など) は次のことが可能になります。

  • arXivでタイトルと概要の内容で科学論文を検索する

  • 論文のメタデータと要旨を取得する

  • 利用可能な用紙形式(PDF/HTML)へのリンクにアクセスします

サーバーは、arXiv の API ガイドラインに従って適切なレート制限を実装します (3 秒ごとに最大 1 リクエスト)。

Related MCP server: bioRxiv-MCP-Server

インストール

Smithery経由でインストール

Smithery経由で Claude Desktop 用の Simple Arxiv を自動的にインストールするには:

npx -y @smithery/cli install mcp-simple-arxiv --client claude

手動インストール

pip install mcp-simple-arxiv

Claude Desktopでの使用

この設定をclaude_desktop_config.jsonに追加します。

(Mac OS)

{
  "mcpServers": {
    "simple-arxiv": {
      "command": "python",
      "args": ["-m", "mcp_simple_arxiv"]
      }
  }
}

(Windows版):

{
  "mcpServers": {
    "simple-arxiv": {
      "command": "C:\\Users\\YOUR_USERNAME\\AppData\\Local\\Programs\\Python\\Python311\\python.exe",
      "args": [
        "-m",
        "mcp_simple_arxiv"
      ]
    }
  }
}

Claude Desktop を再起動すると、次の機能が利用できるようになります。

論文の検索

次のようなクエリを使用して、Claude に論文を検索するよう依頼できます。

Can you search arXiv for recent papers about large language models?

検索すると、一致する論文に関する次のような基本情報が返されます。

  • 論文タイトル

  • 著者

  • arXiv ID

  • 発行日

論文の詳細を取得する

紙の ID を取得したら、詳細を問い合わせることができます。

Can you show me the details for paper 2103.08220?

次のように返されます:

  • 論文タイトル全文

  • 著者

  • 公開日と更新日

  • ジャーナル参照(可能な場合)

  • 論文概要

  • 利用可能な形式へのリンク(PDF/HTML)

発達

開発用にインストールするには:

git clone https://github.com/andybrandt/mcp-simple-arxiv
cd mcp-simple-arxiv
pip install -e .

arXiv APIガイドライン

このサーバーは arXiv API の使用ガイドラインに従います。

  • レート制限は3秒あたり最大1リクエスト

  • 一度に1つの接続

  • 適切なエラー処理と再試行ロジック

ライセンス

マサチューセッツ工科大学

Install Server
A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

Resources

Looking for Admin?

Admins can modify the Dockerfile, update the server description, and track usage metrics. If you are the server author, to access the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/andybrandt/mcp-simple-arxiv'

If you have feedback or need assistance with the MCP directory API, please join our Discord server