← Index

io.github.cyanheads/arxiv-mcp-server

io.github.cyanheads/arxiv-mcp-server·v0.1.15·Search
Quality Score
80
/100

Search arXiv, fetch paper metadata, and read full-text content. STDIO & Streamable HTTP.

§01  Install
Remote endpoint

Streamable HTTP / SSE endpoint. Add to any MCP client that supports remote servers.

https://arxiv.caseyjhand.com/mcp
Claude Desktop (claude_desktop_config.json)
{
  "mcpServers": {
    "arxiv-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@cyanheads/arxiv-mcp-server"
      ],
      "env": {
        "ARXIV_API_BASE_URL": "https://export.arxiv.org/api",
        "ARXIV_REQUEST_DELAY_MS": "3000",
        "ARXIV_CONTENT_TIMEOUT_MS": "30000",
        "ARXIV_API_TIMEOUT_MS": "15000",
        "MCP_LOG_LEVEL": "info",
        "MCP_HTTP_HOST": "127.0.0.1",
        "MCP_HTTP_PORT": "3010",
        "MCP_HTTP_ENDPOINT_PATH": "/mcp",
        "MCP_AUTH_MODE": "none"
      }
    }
  }
}
Cursor (.cursor/mcp.json)
{
  "mcpServers": {
    "arxiv-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@cyanheads/arxiv-mcp-server"
      ],
      "env": {
        "ARXIV_API_BASE_URL": "https://export.arxiv.org/api",
        "ARXIV_REQUEST_DELAY_MS": "3000",
        "ARXIV_CONTENT_TIMEOUT_MS": "30000",
        "ARXIV_API_TIMEOUT_MS": "15000",
        "MCP_LOG_LEVEL": "info",
        "MCP_HTTP_HOST": "127.0.0.1",
        "MCP_HTTP_PORT": "3010",
        "MCP_HTTP_ENDPOINT_PATH": "/mcp",
        "MCP_AUTH_MODE": "none"
      }
    }
  }
}
Cline (cline_mcp_settings.json)
npx -y @cyanheads/arxiv-mcp-server
§02  Environment variables
ARXIV_API_BASE_URL

arXiv API base URL.

ARXIV_REQUEST_DELAY_MS

Minimum delay between arXiv API requests (ms).

ARXIV_CONTENT_TIMEOUT_MS

Timeout for HTML content fetches (ms).

ARXIV_API_TIMEOUT_MS

Timeout for API search/metadata requests (ms).

MCP_LOG_LEVEL

Sets the minimum log level for output (e.g., 'debug', 'info', 'warn').

ARXIV_API_BASE_URL

arXiv API base URL.

ARXIV_REQUEST_DELAY_MS

Minimum delay between arXiv API requests (ms).

ARXIV_CONTENT_TIMEOUT_MS

Timeout for HTML content fetches (ms).

ARXIV_API_TIMEOUT_MS

Timeout for API search/metadata requests (ms).

MCP_HTTP_HOST

The hostname for the HTTP server.

MCP_HTTP_PORT

The port to run the HTTP server on.

MCP_HTTP_ENDPOINT_PATH

The endpoint path for the MCP server.

MCP_AUTH_MODE

Authentication mode to use: 'none', 'jwt', or 'oauth'.

MCP_LOG_LEVEL

Sets the minimum log level for output (e.g., 'debug', 'info', 'warn').

§03  MCP Quality Score  ·  methodology
freshness
25
completeness
10
installability
25
documentation
15
stability
5
§04  Alternatives in Search