npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@labelinn/mcp-server

v2.1.0

Published

LabelInn MCP Server — Let AI assistants print labels, manage printers, and control your fleet. 120+ tools for Claude, GPT, and Copilot.

Readme

LabelInn MCP Server

Let AI assistants print labels, manage printers, and control your fleet.

What is this?

An MCP (Model Context Protocol) server that connects AI assistants like Claude, GPT, and Copilot to LabelInn's cloud printing infrastructure.

After setup, your AI can:

  • "Print 5 copies of the shipping label for order #45123 on the warehouse printer"
  • "Which printers are online right now?"
  • "Show me the template variables for the product label design"
  • "Cancel the last failed print job"
  • "How many API calls have I used today?"

Quick Setup

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "labelinn": {
      "command": "npx",
      "args": ["@labelinn/mcp-server"],
      "env": {
        "LABELINN_API_KEY": "sk_live_your_key_here"
      }
    }
  }
}

VS Code (Copilot)

Add to .vscode/mcp.json:

{
  "servers": {
    "labelinn": {
      "command": "npx",
      "args": ["@labelinn/mcp-server"],
      "env": {
        "LABELINN_API_KEY": "sk_live_your_key_here"
      }
    }
  }
}

From source

cd integrations/mcp
npm install
npm run build
LABELINN_API_KEY=sk_live_xxx npm start

Available Tools

Printing (3 tools)

| Tool | Description | |------|-------------| | print_label | Print using a design template + variable data (most common) | | print_zpl | Send raw ZPL commands to a Zebra printer | | print_image | Print from an image URL (PNG/JPEG) |

Fleet Management (3 tools)

| Tool | Description | |------|-------------| | list_printers | List all printers with status filter | | get_printer_status | Live status of a specific printer | | get_printer_details | Full printer info + telemetry |

Designs (4 tools)

| Tool | Description | |------|-------------| | list_designs | Browse all label templates | | get_design | Full design details with elements | | get_design_variables | Template variables for data mapping | | clone_design | Copy an existing design |

Jobs (4 tools)

| Tool | Description | |------|-------------| | list_jobs | Recent print jobs with status filter | | get_job | Detailed job status | | cancel_job | Cancel a queued job | | reprint_job | Reprint with optional overrides |

Available Resources

| URI | Description | |-----|-------------| | labelinn://printers | Live fleet status | | labelinn://designs | Design template catalog | | labelinn://usage | API usage & quota | | labelinn://jobs/recent | Last 20 print jobs |

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | LABELINN_API_KEY | Yes | Your API key (sk_live_* or sk_test_*) | | LABELINN_BASE_URL | No | Override API URL (default: https://labelinn.com/v1) |

API Key

Get your API key from LabelInn App → Settings → API Keys (requires Pro or Enterprise plan).

  • sk_live_* — Production (sends to real printers)
  • sk_test_* — Sandbox (simulates printing, no physical output)