MCP.so
ログイン

arxiv-search MCP Server

@win4r

arxiv-search MCP Server について

A Model Context Protocol server for searching academic papers on arXiv.

基本情報

カテゴリ

データと分析

ライセンス

MIT

ランタイム

node

トランスポート

stdio

公開者

win4r

設定

以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。

{
  "mcpServers": {
    "arxiv-search": {
      "command": "node",
      "args": [
        "/path/to/arxiv-search/build/index.js"
      ]
    }
  }
}

ツール

1

Search for academic papers on arXiv

概要

What is arxiv-search?

arxiv-search is a Model Context Protocol server for searching academic papers on arXiv. It provides tools to search for papers and access detailed metadata including title, authors, summary, publication date, and PDF link.

How to use arxiv-search?

Install dependencies with npm install, build with npm run build, then add the server configuration to your MCP client. For Claude Desktop, edit claude_desktop_config.json with command node and args pointing to the built index.js. For VSCode and Roo Cline, add to cline_mcp_settings.json. Use the search_papers tool with a required query parameter and optional max_results, sort_by, and start parameters.

Key features of arxiv-search

  • Resources served via arxiv://paper/{id} URIs.
  • Each paper includes title, authors, summary, date, and PDF link.
  • Tool search_papers with customizable query, results count, and sorting.
  • Supports sorting by relevance, last updated date, or submission date.
  • Pagination support via a start parameter.
  • Returns structured JSON content.

Use cases of arxiv-search

  • Search for academic papers on a specific topic (e.g., "machine learning").
  • Retrieve detailed metadata for a known paper ID.
  • Filter and sort search results by relevance or submission date.
  • Integrate paper discovery into an AI assistant workflow.
  • Build automated literature review tools.

FAQ from arxiv-search

What runtime is required?

Node.js is required. Install dependencies with npm install and build the server with npm run build.

How do I debug the server?

Use the MCP Inspector by running npm run inspector, which provides a URL for browser-based debugging tools.

Where is the configuration file for Claude Desktop?

On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json. On Windows: %APPDATA%/Claude/claude_desktop_config.json.

What parameters does search_papers support?

Required: query (string). Optional: max_results (default 10, max 100), sort_by ("relevance", "lastUpdatedDate", "submittedDate"), and start (starting index for pagination).

Is there a limit on search results?

Yes, the maximum number of results per request is 100, with a default of 10. Use pagination (the start parameter) to retrieve more.

コメント

「データと分析」の他のコンテンツ