Back to the catalog

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 -->

[![Publish to PyPI](https://github.com/SepineTam/latex-mcp/actions/workflows/release-pypi.yml/badge.svg)](https://github.com/SepineTam/latex-mcp/actions/workflows/release-pypi.yml)
[![Build and Push Docker Images](https://github.com/SepineTam/latex-mcp/actions/workflows/release-docker.yml/badge.svg)](https://github.com/SepineTam/latex-mcp/actions/workflows/release-docker.yml)
[![PyPI version](https://img.shields.io/pypi/v/latex-mcp.svg)](https://pypi.org/project/latex-mcp/)
[![License: AGPL 3.0](https://img.shields.io/badge/License-AGPL%203.0-blue.svg)](LICENSE)
[![Issue](https://img.shields.io/badge/Issue-report-green.svg)](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"
      ]
    }
  }
}
```

More