arXiv MCP Server
arXiv MCP サーバー
自然言語を使用して arXiv API と対話できるようにするモデル コンテキスト プロトコル (MCP) サーバー。
特徴
arXiv.org にホストされている学術論文のメタデータを取得します
記事をPDF形式でローカルマシンにダウンロードする
特定のクエリでarXivデータベースを検索する
記事を取得し、大規模言語モデル(LLM)コンテキストにロードする
Related MCP server: Model Context Protocol Python Server
ツール
記事のURLを取得する
arXiv.org にホストされている記事の URL をタイトルに基づいて取得する
title(文字列): 記事のタイトル
ダウンロード記事
arXiv.org にホストされている記事を PDF ファイルとしてダウンロードする
title(文字列): 記事のタイトル
記事をコンテキストに読み込む
arXiv.org にホストされている記事を LLM のコンテキストにロードする
title(文字列): 記事のタイトル
詳細を取得する
arXiv.org にホストされている記事のメタデータをタイトルに基づいて取得する
title(文字列): 記事のタイトル
検索_arxiv
指定されたパラメータに基づいてarXiv APIで検索クエリを実行し、一致する記事のメタデータを返します。
all_fields(文字列): すべてのメタデータフィールドにわたる一般的なキーワード検索title(文字列): 記事のタイトル内で検索するキーワードauthor(文字列): 結果をフィルタリングする著者名abstract(文字列): 論文抄録内で検索するキーワードstart(int): 返される最初の結果のインデックス
設定
手動インストール
リポジトリをクローンする
git clone https://github.com/prashalruchiranga/arxiv-mcp-server.git
cd arxiv-mcp-serveruvパッケージマネージャーをインストールします。他のオペレーティングシステムへのインストールの詳細については、公式のUVドキュメントをご覧ください。
# Using Homebrew for macOS
brew install uv
# or
curl -LsSf https://astral.sh/uv/install.sh | sh仮想環境を作成してアクティブ化します。
uv venv --python=python3.13
source .venv/bin/activate # or `venv\Scripts\activate` on Windows開発依存関係をインストールします。
uv syncClaude Desktopでの使用
この統合を有効にするには、 claude_desktop_config.jsonファイルにサーバー設定を追加してください。ファイルが存在しない場合は作成してください。
MacOS の場合: ~/Library/Application Support/Claude/claude_desktop_config.json Windows の場合: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"arxiv-server": {
"command": "uv",
"args": [
"--directory",
"/ABSOLUTE/PATH/TO/PARENT/FOLDER/arxiv-mcp-server/src/arxiv_server",
"run",
"server.py"
],
"env": {
"DOWNLOAD_PATH": "/ABSOLUTE/PATH/TO/DOWNLOADS/FOLDER"
}
}
}
}コマンドフィールドに uv 実行ファイルへのフルパスを入力する必要があるかもしれません。これは、macOSの場合はwhich uv 、Windowsの場合はwhere uv実行することで取得できます。
プロンプトの例
Can you get the details of 'Reasoning to Learn from Latent Thoughts' paper?Get the papers authored or co-authored by Yann Lecun on convolutional neural networksDownload the attention is all you need paperCan you get the papers by Andrew NG which have 'convolutional neural networks' in title?Can you display the paper?List the titles of papers by Yann LeCun. Paginate through the API until there are 30 titlesライセンス
MITライセンス。LICENSE を参照してください。
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA Model Context Protocol server that enables AI agents to search, retrieve, and analyze academic papers from arXiv, supporting features like keyword search, paper details retrieval, content extraction, and paper analysis.4MIT
- Flicense-qualityDmaintenanceA Python implementation of the Model Context Protocol (MCP) server that enables searching and extracting information from arXiv papers, designed to be extensible with additional MCP tools.
- FlicenseAqualityDmaintenanceA Model Context Protocol server that provides tools for searching arXiv papers and managing research paper information with local storage capabilities.21
- Alicense-qualityFmaintenanceEnables AI assistants to search, retrieve, analyze, and export academic papers from arXiv.org using the Model Context Protocol.19MIT
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Search arXiv/Semantic Scholar/OpenAlex + medical evidence (PubMed/Europe PMC) + LaTeX/PDF tools.
A Model Context Protocol server for Wix AI tools
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/prashalruchiranga/arxiv-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server