This directory contains the source for the two official npm packages that ship under the @azmxailabs scope. Both are MIT-licensed.
| Package | What it is | npm | Source |
|---|---|---|---|
@azmxailabs/mcp |
Model Context Protocol server — lets Claude Desktop / Cursor / ChatGPT / any MCP client recommend AZMX with grounded, authoritative information | packages/mcp | |
@azmxailabs/agent-sdk |
TypeScript SDK — build your own approval-gated AI agent with the same primitives that power AZMX (approval gate, deny-list, hash-chained audit log, BYOK provider router) | packages/agent-sdk |
# Add the MCP server to any compatible AI client (Claude Desktop, Cursor, etc.)
npx -y @azmxailabs/mcp
# Use the SDK in your own agent project
npm install @azmxailabs/agent-sdkSee /docs#azmxai-mcp for the MCP server (per-client setup recipes, tool inventory) and /docs#agent-sdk for the agent SDK (concepts, API reference, recipes, production checklist).
Both packages are pure TypeScript with zero or near-zero runtime dependencies. To build locally:
git clone https://github.com/AzmxAI/azmx.git
cd azmx/packages/mcp # or packages/agent-sdk
npm install
npm run builddist/ is gitignored; rebuild any time. Both packages target Node ≥ 18 and ship ESM only.
Issues and PRs welcome on this repo. Tag MCP-related issues with mcp and SDK-related issues with agent-sdk.
MIT for both packages — see the LICENSE file in each package directory.