📦
io.github.SepineTam/latex-mcp
Enable AI agents to compile TeX files with LaTeX inside a Docker container.
0 installs
Trust: 37 — Low
Devtools
Ask AI about io.github.SepineTam/latex-mcp
Powered by Claude · Grounded in docs
I know everything about io.github.SepineTam/latex-mcp. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
latex-mcp
Enable AI agents to compile TeX files with LaTeX inside a Docker container.
Quickly Start
Prerequisites
- Docker
- Recommended hardware: 4GB or higher
- Network access to GitHub Container Registry
Configuration in Claude Code
Create a .mcp.json file in your project root. This configuration is ideal for team collaboration as it uses ${PWD} environment variable that works across different machines:
{
"mcpServers": {
"latex-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount",
"type=bind,src=${PWD},dst=${PWD}",
"-w",
"${PWD}",
"ghcr.io/sepinetam/latex-mcp:latest"
]
}
}
}
