Skip to main content
Glama
reinthal

arxiv-mcp

by reinthal

Convert Arxiv To Markdown

convert_arxiv_to_markdown

Convert arXiv papers to Markdown via arxiv2md.org API. Filter sections, remove references, and manage citations.

Instructions

Convert an arXiv paper to Markdown format using the arxiv2md.org API.

This tool takes an arXiv URL and converts the paper to Markdown format via the arxiv2md.org API service.

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

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sectionsNoList of section names to filter (default: [])
arxiv_urlYesThe arXiv URL (e.g., https://arxiv.org/abs/1706.03762)
remove_tocNoRemove table of contents (default: False)
remove_refsNoRemove references section (default: True)
section_filter_modeNoHow to filter sections - "exclude" or "include" (default: "exclude")exclude
remove_inline_citationsNoRemove inline citations (default: True)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesOriginal arXiv URL
titleNoPaper title from metadata
authorsNoPaper authors from metadata
abstractNoPaper abstract from metadata
markdownYesThe converted markdown content

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior4/5

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

No annotations are provided, so the description must carry the behavioral load. It disclose a key operational constraint – a server-wide rate limit of 3 requests/second – which is non-obvious and critical for an agent to avoid errors. It also names the external service (arxiv2md.org). However, it does not state whether the operation requires authentication, what happens with large papers, or error behavior, leaving some gaps.

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 description is short and front-loaded, with the core action stated first, followed by a note on the API and the rate limit. It avoids redundancy and every sentence contributes. The second sentence repeats the first somewhat but adds the service name, so it is not a major flaw.

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?

Given that the tool has an output schema (so return values need not be described) and a fully documented parameter schema, the description provides the essential missing context: the external service and the rate limit. It does not cover failure modes or authentication, but for a simple conversion tool this is largely complete.

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?

The input schema has 100% coverage with clear descriptions for all six parameters, including defaults and enum-like options. The description adds no parameter-level detail beyond mentioning that it takes an arXiv URL. Since the schema is exhaustive, the baseline 3 is 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?

The description states a specific verb (Convert) and resource (arXiv paper to Markdown), and names the underlying API. It clearly distinguishes this from siblings like search_arxiv and extract_arxiv_id, though it relies on the tool name for the arXiv-to-Markdown specificity. Still, it is immediately obvious what the tool does.

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?

No guidance is given on when to use this tool versus alternatives. It does not say, for example, that search_arxiv finds papers first or that an arXiv URL is required. The description simply states what it does, leaving the agent to infer context from the name and schema.

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