- Home
- MCP servers
- arxiv-latex
arxiv-latex
- python
76
GitHub Stars
python
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
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.
How to use
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.
How to install
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"
]
}
}
}
Notes and usage tips
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.
Examples
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.
Available tools
get_paper_prompt
Tool exposed by the MCP to fetch a paper from arXiv and prompt processing using the LaTeX source, enabling mathematical reasoning and explanation.