Interact with the arXiv.org paper database. Supports keyword search, paper lookups, author searches, and trend analysis.
This project is an MCP (Model Context Protocol) server built to interact with the vast arXiv.org paper database.
It allows clients like Claude AI to search, explore, and compare arXiv papers efficiently β all through a custom-built, local server. Itβs built with Python and the FastMCP framework, and uses uv for lightweight package management.
π Keyword-based Paper Search
Search arXiv papers by keywords, with options to sort by relevance or most recent.
π Latest Papers by Category
Specify an arXiv category code (e.g., cs.AI
, math.AP
) to fetch the most recent papers in that field.
π Paper Details Lookup
Fetch detailed metadata using a paper's arXiv ID: title, authors, abstract, categories, DOI, PDF link, and more.
π§βπ¬ Author-based Paper Search
Retrieve a list of papers published by a specific author.
π Trend Analysis (Experimental)
Get an overview of trending keywords or topics based on recent papers in a category (currently uses mock data).
π Summarization Prompt Generator
Dynamically generate prompts that help LLMs summarize a selected paper more effectively.
π Comparison Prompt Generator
Provide two paper IDs to generate a structured prompt for comparing their content.
To install arXiv Research Assistant MCP Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install arxiv-paper-mcp --client claude
uv pip install arxiv-paper-mcp
git clone https://github.com/daheepk/arxiv-mcp-server.git
cd arxiv-mcp-server
Use uv
to install all dependencies in editable mode:
uv pip install -e .
arxiv-paper-mcp
To use this MCP server with Claude, add the following JSON configuration to Claude's MCP settings:
{
"mcpServers": {
"arXivPaper": {
"command": "uv",
"args": [
"tool",
"run",
"arxiv-paper-mcp"
]
}
}
}
arxiv-mcp-server/
βββ arxiv_mcp/ # Main package
β βββ __init__.py
β βββ app.py # FastMCP app setup
β βββ server.py # Server entry point
β βββ utils.py # arXiv API communication logic
β βββ resources/ # MCP resources (categories, authors, etc.)
β βββ tools/ # MCP tools (search, detail lookup, trends)
β βββ prompts/ # Prompt templates (summarize, compare)
βββ pyproject.toml # Project config & dependencies
βββ README.md # This file
Provides weather data using the US National Weather Service (NWS) API. Built with pure JavaScript ES Modules.
An automated research agent using Google Gemini models and Google Search to perform deep, multi-step web research.
Google News search capabilities with automatic topic categorization and multi-language support via SerpAPI integration.
Perform web searches using the DuckDuckGo Search API.
Interacting with Perplexity
Fetches and processes arXiv papers using LaTeX source for accurate equation handling.
Web search server that integrates Perplexity Sonar models via OpenRouter API for real-time, context-aware search with citations
Provides information about Java conferences worldwide by parsing data from the javaconferences.github.io repository.
Provides geographical and directional data from the Naver Map API.
Local RAG (on-premises) with MCP server.