← labelixa.com

INDIVIDUAL MCP TOOL

bulk_submit

Submit a bulk label production job: one ZPL template with {{variable}} placeholders plus data rows (one object per label).

labelixa.comnone authenticationAvailability not checked

LIVE ENDPOINT

https://api.labelixa.com/mcp

No auth detected

Connect to this endpoint to inspect the live schema for bulk_submit and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent server

labelixa.com

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.labelixa]
url = "https://api.labelixa.com/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "labelixa": {
      "type": "http",
      "url": "https://api.labelixa.com/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: labelixa
Remote MCP URL: https://api.labelixa.com/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "labelixa": {
      "url": "https://api.labelixa.com/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "labelixa": {
      "type": "http",
      "url": "https://api.labelixa.com/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "labelixa",
  "transport": "streamable-http",
  "url": "https://api.labelixa.com/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • zpl_preview — Render ZPL label code and return the label as a PNG image.
  • zpl_validate — Lint ZPL code and return structured diagnostics: unknown commands, missing ^FS, out-of-range parameters, fields outside the label boundary.
  • zpl_command_help — Explain a single ZPL command: syntax, parameters with types/ranges/options, a fragment example and whether the Labelixa renderer draws it.
  • barcode_png — Generate a single barcode as a PNG image (Code 128, QR, DataMatrix, EAN-13, UPC-A, PDF417 and more).
  • language_detect — Detect which printer language raw label code is written in (ZPL, EPL, TSPL or CPCL).
  • epl_validate — Lint EPL/EPL2 label code; returns positioned findings with severity as JSON.
  • tspl_validate — Lint TSPL/TSPL2 label code; returns positioned findings with severity as JSON.
  • cpcl_validate — Lint CPCL label code; returns positioned findings with severity as JSON.