home / mcp / arxiv-latex mcp server
Provides MCP access to arXiv LaTeX sources, enabling precise math processing for papers via MCP clients.
Configuration
View docs{
"mcpServers": {
"takashiishida-arxiv-latex-mcp": {
"command": "uv",
"args": [
"--directory",
"/ABSOLUTE/PATH/TO/arxiv-latex-mcp",
"run",
"server/main.py"
]
}
}
}You can run the arxiv-latex MCP Server to let MCP clients like Claude Desktop or Cursor fetch arXiv LaTeX sources and process them directly. This enables accurate handling of mathematical content and equations by using the original LaTeX source rather than PDFs.
You interact with the arxiv-latex MCP Server through an MCP client. After you install and run the server, you will see a tool named get_paper_prompt in your client’s MCP tools list. Use this tool to query arXiv papers and have the server fetch the LaTeX source, then provide prompts or questions about the paper. For example, you can ask the server to explain a theorem, derive a result, or summarize the mathematical steps of a proof from the LaTeX source. This approach is especially helpful for areas with dense mathematics, such as computer science, mathematics, and engineering.
Prepare your environment and add the MCP configuration to your client. You have two options depending on how you manage MCP servers.
{
"mcpServers": {
"arxiv-latex-mcp": {
"command": "uv",
"args": [
"--directory",
"/ABSOLUTE/PATH/TO/arxiv-latex-mcp",
"run",
"server/main.py"
]
}
}
}Restart your application after saving the MCP configuration. If you are using Claude Desktop, you can enable the MCP tool by selecting the hammer icon and choosing get_paper_prompt from the available tools. For macOS users with Claude Desktop, you can also install via Desktop Extensions by double-clicking the .dxt file, or download the .dxt file and install it.
Ask questions about a specific arXiv paper, such as: “Explain the first theorem in 2202.00395.” The server will fetch the LaTeX source and help you explore the theorem with precise mathematical context.
Tool exposed by the MCP to fetch a paper from arXiv and prompt processing using the LaTeX source, enabling mathematical reasoning and explanation.