Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ARXIV_STORAGE_DIR | No | Directory for downloaded papers | ~/.arxiv-mcp/papers |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search | Search arXiv papers by title, keywords, or arXiv ID. Args:
query: Search query (title, keywords, or arXiv ID like 2401.12345)
max_results: Maximum number of results to return (default: 10)
Returns:
List of matching papers with ID, title, authors, and abstract |
| get_paper | Get the full text of an arXiv paper. Args:
paper_id: arXiv paper ID (e.g., "2401.12345")
section: Which section to return: "all", "abstract", "introduction", "method", "conclusion"
Returns:
The paper text (full or specified section) |
| list_downloaded_papers | List all locally downloaded papers. Returns:
List of downloaded papers with their metadata |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |