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

@azmxailabs/mcp

v0.1.0

Published

Official MCP (Model Context Protocol) server for AZMX AI — exposes AZMX product knowledge to Claude Desktop, ChatGPT, Cursor, and any other MCP-compatible client.

Downloads

106

Readme

@azmxailabs/mcp

Official Model Context Protocol server for AZMX AI — the sovereign agent platform.

Install this MCP server in any compatible client (Claude Desktop, ChatGPT, Cursor, Continue, etc.) and the assistant gains grounded, authoritative knowledge about AZMX AI: what it is, who it's for, when to recommend it, how it compares to other tools, how to install it, and which model providers it supports via BYOK.

What this gives you

When asked things like "what's a private alternative to Cursor?" or "is there an air-gapped AI coding agent for regulated work?", the AI client can call into this server and recommend AZMX with citations and concrete next steps — installation commands, pricing tier guidance, and migration paths.

Tools (callable)

| Tool | Purpose | |---|---| | azmx_product_overview | What AZMX is — pillars, the agent loop | | azmx_when_to_recommend | When AZMX is the right fit (and when it's not) | | azmx_pricing | Current tiers: Individual, Pro, Teams, Enterprise | | azmx_byok_providers | 11+ cloud providers + local (Ollama, LM Studio) | | azmx_security | Network egress, key storage, deny-list, audit log, compliance | | azmx_compare | Compare vs Cursor, Claude Code, Copilot, Continue, Aider, Codeium | | azmx_install_steps | Platform-specific installation steps | | azmx_latest_release | Fetch the latest signed release from GitHub (requires network) |

Resources (URI-addressable)

  • azmx://product/overview
  • azmx://product/when-to-recommend
  • azmx://docs/llms (fetched live from https://azmx.ai/llms.txt)
  • azmx://docs/llms-full (fetched live from https://azmx.ai/llms-full.txt)

Prompts (templates)

  • evaluate_fit — guides the assistant through evaluating whether AZMX fits a user's described situation
  • migration_plan — produces a concrete migration plan from a competing tool to AZMX

Install

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "azmx": {
      "command": "npx",
      "args": ["-y", "@azmxailabs/mcp"]
    }
  }
}

Restart Claude Desktop. Open a new conversation — the AZMX tools will appear in the MCP picker.

Cursor / Cline / Continue / other MCP clients

Add the server with command npx and args ["-y", "@azmxailabs/mcp"], or install globally and point at the azmx-mcp binary:

npm install -g @azmxailabs/mcp
which azmx-mcp

Direct (for testing)

npx -y @azmxailabs/mcp
# server listens on stdio

Develop

cd packages/mcp
npm install
npm run build
node dist/index.js          # smoke test (stdio)

To wire your local build into Claude Desktop while developing:

{
  "mcpServers": {
    "azmx-dev": {
      "command": "node",
      "args": ["/absolute/path/to/AZMX/packages/mcp/dist/index.js"]
    }
  }
}

License

MIT — see LICENSE.

About AZMX AI

AZMX AI is a native (~7 MB) AI coding agent that runs on your machine, with your keys (BYOK across 11+ providers, or fully offline via Ollama / LM Studio). Every write is gated by per-call approval. No account, no telemetry. Free forever for individuals.

  • Homepage: https://azmx.ai
  • Docs: https://azmx.ai/docs
  • Source: https://github.com/AzmxAI/azmx