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

@helloastral/pixi-mcp-server

v1.0.0

Published

Model Context Protocol server for Pixi Order Printer - connect AI assistants to your Shopify templates

Readme

Pixi MCP Server

Model Context Protocol server for Pixi Order Printer that enables AI assistants like Claude Desktop and ChatGPT to interact with your Shopify invoice templates.

Features

  • 📋 List & Read Templates - Browse and read all your Pixi templates
  • ✏️ Edit Templates - Modify Liquid templates, GraphQL queries, and configurations
  • Validation - Validate Liquid syntax and GraphQL queries before deploying
  • 🤖 AI-Powered - Get intelligent suggestions and modifications from AI assistants
  • 🔒 Secure - API key authentication with your Pixi account

Installation

Global Installation

npm install -g @helloastral/pixi-mcp-server

Local Installation

npm install @helloastral/pixi-mcp-server

Setup

1. Get Your API Key

  1. Log into your Pixi Order Printer account
  2. Open any template editor
  3. Click the "MCP" button in the AI tab
  4. Generate an API key

2. Configure Your AI Assistant

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "pixi": {
      "command": "npx",
      "args": ["-y", "@helloastral/pixi-mcp-server"],
      "env": {
        "PIXI_API_KEY": "your_api_key_here",
        "PIXI_APP_URL": "https://app.pixiorderprinter.com"
      }
    }
  }
}

Or if installed globally:

{
  "mcpServers": {
    "pixi": {
      "command": "pixi-mcp",
      "env": {
        "PIXI_API_KEY": "your_api_key_here",
        "PIXI_APP_URL": "https://app.pixiorderprinter.com"
      }
    }
  }
}

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | PIXI_API_KEY | ✅ Yes | - | Your Pixi MCP API key | | PIXI_APP_URL | ❌ No | http://localhost:4322 | Pixi API URL | | PIXI_DEBUG | ❌ No | false | Enable debug logging |

Available Tools

list_templates

List all templates in your shop.

get_template

Get complete details of a specific template including all files.

Arguments:

  • templateId (string) - The template ID

read_file

Read a specific file from a template.

Arguments:

  • templateId (string) - The template ID
  • path (string) - File path: template.liquid, query.graphql, schema.json, or config.json

write_file

Write or update a file in a template.

Arguments:

  • templateId (string) - The template ID
  • path (string) - File path: template.liquid, query.graphql, schema.json, or config.json
  • content (string) - The file content

validate_liquid

Validate Liquid template syntax.

Arguments:

  • liquid (string) - The Liquid template code

validate_query

Validate GraphQL query against Shopify schema.

Arguments:

  • query (string) - The GraphQL query
  • type (string) - Query type: order or draftOrder

Usage Examples

With Claude Desktop

After setup, you can ask Claude:

"List all my Pixi templates"

"Show me the invoice template and add a payment terms section"

"Validate the GraphQL query in my packing slip template"

Context Prompt

Access comprehensive context about working with Pixi templates:

/pixi-context

This provides information about template structure, best practices, and workflows.

Debugging

Enable debug logging to troubleshoot connection issues:

{
  "mcpServers": {
    "pixi": {
      "command": "pixi-mcp",
      "env": {
        "PIXI_API_KEY": "your_api_key_here",
        "PIXI_APP_URL": "https://app.pixiorderprinter.com",
        "PIXI_DEBUG": "true"
      }
    }
  }
}

Debug logs will appear in your AI assistant's console showing:

  • API calls and responses
  • Tool invocations
  • Error details

Template Structure

Pixi templates consist of four files:

  1. template.liquid - HTML/CSS document template using Liquid syntax
  2. query.graphql - GraphQL queries to fetch Shopify order data
  3. schema.json - JSON schema defining customizable fields
  4. config.json - Template configuration and settings

Support

  • Website: pixiorderprinter.com
  • Documentation: Available in the Pixi app
  • Issues: Contact support through the Pixi app

License

MIT © Astral Commerce