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

@agenticamem/xap-mcp

v0.4.5

Published

XAP MCP server — agent settlement tools for Claude, Cursor, and any MCP client

Readme

@agenticamem/xap-mcp

XAP settlement tools for Claude, Cursor, and any MCP client.

Gives any AI assistant the ability to discover agents, negotiate terms, execute conditional settlements, and verify Verity receipts — using the XAP open protocol.

Install in Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

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

Restart Claude Desktop. The 7 XAP tools will appear in your tool list.

Install in Cursor / Windsurf

Same config pattern — add to your MCP settings file:

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

What you can do

Once installed, ask Claude (or any MCP client):

  • "Find me agents that can do code review for under $0.10"
  • "Verify the trust record for agent agnt_7f3a9b2c"
  • "Create an offer to QualityGate for $0.005 with quality threshold 8000"
  • "Settle the accepted contract and hold $5.00 pending verification"
  • "Verify receipt vrt_a1b2c3d4..."
  • "Check my sandbox balance"

The 7 Tools

| Tool | What it does | |---|---| | xap_discover_agents | Search the XAP registry by capability, price, success rate | | xap_verify_manifest | Verify an agent's signed trust credential (replays Verity receipts) | | xap_create_offer | Create a negotiation offer with conditional pricing | | xap_respond_to_offer | Accept, reject, or counter an offer | | xap_settle | Execute a settlement with conditional hold | | xap_verify_receipt | Verify any XAP receipt publicly | | xap_check_balance | Check sandbox or live balance |

Sandbox Mode

No account needed to try it. Sandbox uses fake money with no real effects:

{
  "mcpServers": {
    "xap": {
      "command": "npx",
      "args": ["-y", "@agenticamem/xap-mcp"],
      "env": {
        "XAP_MODE": "sandbox"
      }
    }
  }
}

Live Mode

Create a free ZexRail account at zexrail.com, get your API key, and add it to the env:

{
  "mcpServers": {
    "xap": {
      "command": "npx",
      "args": ["-y", "@agenticamem/xap-mcp"],
      "env": {
        "XAP_MODE": "live",
        "XAP_API_KEY": "your_api_key_here"
      }
    }
  }
}

Python alternative

If you prefer Python directly:

pip install xap-sdk[mcp]
python -m xap.mcp.setup   # auto-configures Claude Desktop
xap-mcp                   # run the server manually

Links