Arxiv Latex MCP Server

An MCP server that enables [Claude Desktop](https://claude.ai/download), [Claude Code](https://docs.anthropic.com/en/docs/claude-code)

Local serverstdioPython

What is the Arxiv Latex MCP MCP server?

Arxiv latex mcp mcp server connects Arxiv Latex MCP to AI assistants that speak the Model Context Protocol. An MCP server that enables Claude Desktop, Claude Code, Cursor, or other MCP clients to directly access and process arXiv papers by fetching the LaTeX source. It uses.

What Arxiv Latex MCP does

An MCP server that enables Claude Desktop, Claude Code, Cursor, or other MCP clients to directly access and process arXiv papers by fetching the LaTeX source. It uses arxiv-to-prompt under the hood to handle downloading and processing the LaTeX.

Tools it exposes

Once connected, the assistant can call these 4 tools directly:

  • get_paper_prompt — Get the full flattened LaTeX of a paper
  • get_paper_abstract — Get just the abstract
  • list_paper_sections — List section headings of a paper
  • get_paper_section — Get a specific section by path

Installing the arxiv latex mcp mcp server

The server is distributed via PyPI as arxiv-latex-mcp, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Arxiv Latex MCP sits in that group, and the shape of its toolset — get_paper_prompt, get_paper_abstract, list_paper_sections among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • Maintained by takashiishida, written in Python.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the arxiv latex mcp mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
get_paper_promptGet the full flattened LaTeX of a paper
get_paper_abstractGet just the abstract
list_paper_sectionsList section headings of a paper
get_paper_sectionGet a specific section by path

How to install the Arxiv Latex MCP MCP server

{
  "mcpServers": {
    "arxiv-latex-mcp": {
      "command": "uvx",
      "args": ["arxiv-latex-mcp"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Arxiv Latex MCP to get paper prompt.
  • Use Arxiv Latex MCP to get paper abstract.
  • Use Arxiv Latex MCP to list paper sections.

Frequently asked questions

It connects Arxiv Latex MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 4 tools (get_paper_prompt, get_paper_abstract, list_paper_sections, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Arxiv Latex MCP directly.