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

@getzulu/mcp

v0.2.0

Published

getzulu MCP server — exposes the Zulu API v1 to Claude

Readme

getzulu MCP Server

A local MCP server (name: getzulu) that exposes the Zulu API v1 to MCP clients such as Claude Desktop and Claude Code. Ask about — and manage — your clients, products, invoices, purchase orders, opportunities, stock, forms, and more, in plain language.

It authenticates with a zulu_* Bearer token, so everything is scoped to that token's account. Get a token from your Zulu dashboard under Settings → API.

For the same tools from the terminal, see the companion CLI, @getzulu/cli.

Connect to Claude Code

claude mcp add getzulu -e ZULU_API_TOKEN=zulu_… -- npx -y @getzulu/mcp

Connect to Claude Desktop

Add this to claude_desktop_config.json (Settings → Developer → Edit Config), then restart Claude Desktop:

{
  "mcpServers": {
    "getzulu": {
      "command": "npx",
      "args": ["-y", "@getzulu/mcp"],
      "env": {
        "ZULU_API_TOKEN": "zulu_…"
      }
    }
  }
}

Then ask: "What Zulu account am I connected to?", "List my Zulu clients", or "Add a note to Acme's client record."

Configuration

ZULU_API_TOKEN is the only required setting — a zulu_* Bearer token from your Zulu dashboard (Settings → API). Requires Node.js 18+.

Set ZULU_READONLY=1 to expose only the safe read tools — the server will then advertise no way to modify your data. Useful when an agent should be able to look but never touch.

Tools

The server exposes the full Zulu API as tools named <resource>_<action>, generated directly from the API's OpenAPI spec — so the tool set tracks the API and stays in sync. Read tools (_list, _get) are annotated readOnlyHint; write tools (_create, _update, _add, _remove, …) are not, and deletes carry destructiveHint, so clients can surface confirmations appropriately.

| Resource | Tools | |---|---| | Account | tenant_info, account_modules | | Clients & suppliers | client_list/get/create/update, supplier_list/get/create/update | | Products | product_list/get/create/update, product_taxonomy, product_price_update, product_category_*, product_tag_*, product_image_upload, category_* | | Sales & purchasing | invoice_* (+ invoice_line_*), porder_* (+ porder_line_*) | | Pipeline | opportunity_list/get/create, opportunity_stage_list/set | | Projects & content | jobcard_*, post_*, note_list/create | | Inventory | inventory_stock, inventory_stock_adjust | | Forms & files | form_*, submission_*, file_upload |

Each tool declares a full JSON Schema of its parameters (filters, pagination, body fields), which MCP clients discover automatically. Resources are addressed by token (returned by the matching list tool), never by numeric id.

Verify with MCP Inspector (optional)

npx @modelcontextprotocol/inspector npx -y @getzulu/mcp

(set ZULU_API_TOKEN in the Inspector's environment panel.)

Notes

  • Read and write. The server can create and update Zulu data. Read tools are annotated readOnlyHint; deletes carry destructiveHint. Set ZULU_READONLY=1 to expose read tools only.
  • Scoped to your token. Every call is scoped to the token's account.
  • Local stdio transport. Your token stays on your machine; the server talks directly to your Zulu instance.

License

MIT