Skip to main content
Glama
reinthal

arxiv-mcp

by reinthal

Search Arxiv

search_arxiv

Find relevant arXiv papers by keyword, category, or date range to support your research.

Instructions

Search for arXiv papers by keyword, category, and date range.

This tool queries the arXiv API to find papers matching the given search criteria. Results are returned in order of relevance.

Rate Limited: This tool is subject to a server-wide rate limit of 3 requests/second.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYesKeyword search query (e.g., "attention mechanisms transformers")
date_toNoEnd date filter in YYYY-MM-DD format (e.g., "2023-12-31")
categoryNoarXiv category filter (e.g., "cs.AI", "physics.hep-th")
date_fromNoStart date filter in YYYY-MM-DD format (e.g., "2023-01-01")
max_resultsNoMaximum number of results to return (default: 10)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full disclosure burden. It does valuable work by stating the server-wide rate limit of 3 requests/second and that results come back ordered by relevance. It omits other behavioral context such as authentication requirements or pagination vs. the max_results cap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The purpose sentence is front-loaded, followed by a short mechanism note and a clearly labeled rate-limit warning. Three tight sentences, though the middle sentence about querying the arXiv API is largely redundant with the purpose sentence.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

An output schema exists, so return-value documentation is unnecessary, and the 100% schema coverage covers all parameters. The only meaningful omission for a read-only search tool with no annotations is the lack of any permissions/auth note, which is minor here.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all five parameters (query, category, date_from, date_to, max_results) are already documented with examples and formats in the schema. The description only restates the filter dimensions and adds no syntax or semantic detail beyond the schema, making the baseline 3 appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb (Search) and resource (arXiv papers) plus the filtering dimensions (keyword, category, date range), so the agent knows exactly what it returns. It does not, however, explicitly distinguish itself from siblings like get_author_papers or get_related_papers, which also return papers; the differentiation must be inferred.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no when-to-use or when-not-to-use guidance and no mention of the alternative paper-retrieval tools. The agent must infer from the purpose alone that this is for keyword/topic discovery rather than author or citation-graph lookups.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.