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/gst-pro-mcp-server

v1.0.0

Published

Model Context Protocol server for GST Pro - connect AI assistants to your Shopify GST invoice templates

Readme

GST Pro MCP Server

Model Context Protocol server for GST Pro that enables AI assistants like Claude Desktop and Claude CLI to interact with your Shopify GST invoice templates.

Features

  • List & Read Templates - Browse and read all your GST Pro 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 tied to your GST Pro shop

Installation

Global Installation

npm install -g @helloastral/gst-pro-mcp-server

Local Installation

npm install @helloastral/gst-pro-mcp-server

Setup

1. Get Your API Key

  1. Log into your GST Pro app inside Shopify admin
  2. Go to Settings -> Integrations
  3. Find the "MCP" section and generate an API key

2. Configure Your AI Assistant

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "gst-pro": {
      "command": "npx",
      "args": ["-y", "@helloastral/gst-pro-mcp-server"],
      "env": {
        "GST_PRO_API_KEY": "your_api_key_here",
        "GST_PRO_APP_URL": "https://api.gstpro.helloastral.com"
      }
    }
  }
}

Claude CLI

claude mcp add --transport stdio gst-pro --env GST_PRO_API_KEY=your_api_key_here --env GST_PRO_APP_URL=https://api.gstpro.helloastral.com -- npx -y @helloastral/gst-pro-mcp-server

Environment Variables

| Variable | Required | Default | Description | | ----------------- | -------- | ----------------------- | ------------------------ | | GST_PRO_API_KEY | Yes | - | Your GST Pro MCP API key | | GST_PRO_APP_URL | No | http://localhost:4321 | GST Pro API URL | | GST_PRO_DEBUG | No | false | Enable debug logging |

Available Tools

list_templates

List all V2 templates in your shop.

get_template

Get metadata of a specific template by ID.

Arguments:

  • templateId (string) - The template ID

read_file

Read a specific file from a template. Falls back to the base template's content if the shop has not customised it yet.

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. Promotes the shop template to a customised state on first edit.

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 the Shopify schema.

Arguments:

  • query (string) - The GraphQL query
  • type (string) - Document type: INVOICE, PACKING, DRAFT, or REFUND

Usage Examples

After setup, you can ask Claude:

"List all my GST Pro 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 GST Pro templates:

/gst-pro-context

Template Structure

GST Pro 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: helloastral.com
  • Documentation: Available in the GST Pro app
  • Issues: Contact support through the GST Pro app

License

MIT (c) Astral Commerce