Skip to main content
ClaudeWave

Thermal label MCP server for rendering, validating, debugging and converting ZPL, EPL, TSPL and CPCL labels. Source of the npm package labelixa-mcp.

MCP ServersRegistry oficial0 estrellas0 forksJavaScriptMITActualizado yesterday
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/18/2026
Install in Claude Code / Claude Desktop
Method: NPX · labelixa-mcp
Claude Code CLI
claude mcp add labelixa-mcp -- npx -y labelixa-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "labelixa-mcp": {
      "command": "npx",
      "args": ["-y", "labelixa-mcp"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Casos de uso

Resumen de MCP Servers

# labelixa-mcp

[Labelixa](https://labelixa.com) is an MCP (Model Context Protocol) server
and API platform for thermal label development. It gives AI assistants and
developer tools the ability to render, validate, debug, inspect and
convert thermal printer labels — **ZPL, EPL, TSPL and CPCL** — through MCP.

There are two ways to connect:

| | Remote server (recommended) | This npm package |
|---|---|---|
| Endpoint | `https://api.labelixa.com/mcp` | local process over stdio |
| Tool set | full set: rendering, validation, debugging, conversion, barcode analysis, printer compatibility, templates, bulk jobs | core subset (table below); each tool calls the Labelixa REST API |
| Install | nothing to install | `npx -y labelixa-mcp` or `npm install -g labelixa-mcp` |
| Authentication | optional `lbx_` API key | optional `lbx_` API key |

The live tool list of the remote server is at
[labelixa.com/mcp](https://labelixa.com/mcp).

## Remote server (no install)

Transport: Streamable HTTP, stateless JSON-RPC over POST. Anonymous use
is free and rate-limited per IP; an API key uses the account's own quota.
Keys: [labelixa.com](https://labelixa.com).

Claude Code:

```sh
claude mcp add --transport http labelixa https://api.labelixa.com/mcp
```

With an API key:

```sh
claude mcp add --transport http labelixa https://api.labelixa.com/mcp \
  --header "Authorization: Bearer lbx_..."
```

Generic MCP client configuration (Claude Desktop, Cursor and other
clients that accept a `url` entry):

```json
{
  "mcpServers": {
    "labelixa": {
      "url": "https://api.labelixa.com/mcp",
      "headers": {"Authorization": "Bearer lbx_..."}
    }
  }
}
```

Drop the `headers` block for anonymous use.

## Local server (this package)

```sh
npm install -g labelixa-mcp
```

Or skip installing and run it with `npx` straight from your MCP client
config:

```json
{
  "mcpServers": {
    "labelixa": {
      "command": "npx",
      "args": ["-y", "labelixa-mcp"],
      "env": {"LABELIXA_API_KEY": "lbx_..."}
    }
  }
}
```

Environment variables:

- `LABELIXA_API_KEY` — optional `lbx_` API key. Without it the anonymous
  quota applies.
- `LABELIXA_BASE_URL` — optional; defaults to `https://api.labelixa.com`.

### Tools in this package

| Tool | What it does |
|---|---|
| `zpl_preview` | Renders ZPL to a PNG image for inspection. Server-side render — not a guarantee of how a specific physical printer will output the label. |
| `zpl_validate` | Lints ZPL and returns the structured diagnostics report (unknown commands, parameter ranges, layout overflow) as JSON. Pass the real label size — checks depend on it. |
| `barcode_generate` | Generates a standalone barcode (SVG or PNG): code128, code39, ean13, upca, upce, itf14, msi, qrcode, datamatrix, pdf417. |
| `language_detect` | Detects the printer language of raw label code (ZPL/EPL/TSPL/CPCL). Heuristic — returns a confidence tier, not a probability. |
| `epl_validate` | Lints EPL/EPL2 code; positioned findings with severity, as JSON. |
| `tspl_validate` | Lints TSPL/TSPL2 code; positioned findings with severity, as JSON. |
| `cpcl_validate` | Lints CPCL code; positioned findings with severity, as JSON. |
| `zpl_compatibility` | Compatibility RISK analysis of ZPL against a printer model. Not an emulator — reports language posture with evidence level; never says "it works". |
| `zpl_command_help` | Looks up one ZPL command in the maintained catalog: name, syntax, parameters and whether the preview engine actually renders it — printer-side commands are marked as not rendered. |
| `convert_zpl_dpi` | Rescales ZPL coordinates between printer resolutions (203/300/600 dpi). Embedded `^GF`/`~DG` bitmaps are NOT rescaled — a warnings block precedes the output when present. |
| `explain_zpl` | Full sectioned health report (syntax, size/DPI, orientation, barcodes, fonts, memory) with an honest score — sections it cannot assess say "not assessed" instead of counting. |

EPL, TSPL and CPCL previews, label templates, bulk generation,
image-to-ZPL conversion and barcode reading from photos are on the remote
server only.

## Directory listings

- Official [MCP Registry](https://registry.modelcontextprotocol.io):
  `com.labelixa/zpl` (remote server + this npm package).
- [Smithery](https://smithery.ai/servers/labelixa/zpl): `labelixa/zpl`.
  Smithery routes calls through its own gateway; the canonical endpoint
  is `https://api.labelixa.com/mcp`.

[![smithery badge](https://smithery.ai/badge/labelixa/zpl)](https://smithery.ai/servers/labelixa/zpl)

## Honesty notes

- Errors carry the server's own message verbatim; quota exhaustion is
  reported with the server's `Retry-After` rather than a made-up delay.
- `zpl_preview` is a render, not a print: physical output depends on the
  printer, media and darkness settings.

Source of this package: [github.com/Labelixa/labelixa-mcp](https://github.com/Labelixa/labelixa-mcp).
Docs: [labelixa.com/docs/api](https://labelixa.com/docs/api). License: MIT.
barcodecpclepllabel-printingmcpmcp-servermodel-context-protocolthermal-printertsplzebrazpl

Lo que la gente pregunta sobre labelixa-mcp

¿Qué es Labelixa/labelixa-mcp?

+

Labelixa/labelixa-mcp es mcp servers para el ecosistema de Claude AI. Thermal label MCP server for rendering, validating, debugging and converting ZPL, EPL, TSPL and CPCL labels. Source of the npm package labelixa-mcp. Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-16.

¿Cómo se instala labelixa-mcp?

+

Puedes instalar labelixa-mcp clonando el repositorio (https://github.com/Labelixa/labelixa-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar Labelixa/labelixa-mcp?

+

Nuestro agente de seguridad ha analizado Labelixa/labelixa-mcp y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene Labelixa/labelixa-mcp?

+

Labelixa/labelixa-mcp es mantenido por Labelixa. La última actividad registrada en GitHub es del 2026-09-16, con 0 issues abiertos.

¿Hay alternativas a labelixa-mcp?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega labelixa-mcp en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: Labelixa/labelixa-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/labelixa-labelixa-mcp)](https://claudewave.com/repo/labelixa-labelixa-mcp)
<a href="https://claudewave.com/repo/labelixa-labelixa-mcp"><img src="https://claudewave.com/api/badge/labelixa-labelixa-mcp" alt="Featured on ClaudeWave: Labelixa/labelixa-mcp" width="320" height="64" /></a>

Más MCP Servers

Alternativas a labelixa-mcp