io.github.SepineTam/latex-mcp
Enable AI agents to compile TeX files with LaTeX inside a Docker container.
Open source Open in the app JSON README (API)
About
Enable AI agents to compile TeX files with LaTeX inside a Docker container.
Details
- Kind
- MCP servers
- Topic
- Cloud & DevOps
- Publisher
- sepinetam
- Origin
- official
- Category
- ferramentas
- Transport
- local
- Version
- 0.1.3
- Stars
- 3
- Last push
- 2026-04-07T11:46:44Z
- Repository state
- ativo
- Language
- Python
- License
- AGPL-3.0
- Added
- 2026-08-29 03:02:14
- Updated
- 2026-08-29 03:02:14
- Origin id
io.github.SepineTam/latex-mcp
README
# latex-mcp
<!-- mcp-name: io.github.SepineTam/latex-mcp -->
[](https://github.com/SepineTam/latex-mcp/actions/workflows/release-pypi.yml)
[](https://github.com/SepineTam/latex-mcp/actions/workflows/release-docker.yml)
[](https://pypi.org/project/latex-mcp/)
[](LICENSE)
[](https://github.com/SepineTam/latex-mcp/issues/new)
Enable AI agents to compile TeX files with LaTeX inside a Docker container.
## Quickly Start
### Prerequisites
- [Docker](https://docs.docker.com/get-docker/)
- Recommended hardware: 4GB or higher
- Network access to [GitHub Container Registry](https://github.com/SepineTam/latex-mcp/pkgs/container/latex-mcp)
### 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:
```json
{
"mcpServers": {
"latex-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount",
"type=bind,src=${PWD},dst=${PWD}",
"-w",
"${PWD}",
"ghcr.io/sepinetam/latex-mcp:latest"
]
}
}
}
```