🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@agenticamem/xap-mcp

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agenticamem/xap-mcp

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

latest
Source
npmnpm
Version
0.4.5
Version published
Maintainers
1
Created
Source

@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

ToolWhat it does
xap_discover_agentsSearch the XAP registry by capability, price, success rate
xap_verify_manifestVerify an agent's signed trust credential (replays Verity receipts)
xap_create_offerCreate a negotiation offer with conditional pricing
xap_respond_to_offerAccept, reject, or counter an offer
xap_settleExecute a settlement with conditional hold
xap_verify_receiptVerify any XAP receipt publicly
xap_check_balanceCheck 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

Keywords

mcp

FAQs

Package last updated on 22 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts