← noui.bot

Install

Connect your MCP client to Agent Bazaar in 30 seconds. Every tool call is metered, receipted, and billed transparently.

~30 seconds

Before you start

You need a Bazaar API key. Register free or run:

curl -X POST https://noui.bot/api/bazaar/register-consumer \
  -H "Content-Type: application/json" \
  -d '{"name":"My Agent","email":"you@example.com"}'

Returns bz_live_... — replace bz_your_key_here in the config below.

Pick your client

~/Library/Application Support/Claude/claude_desktop_config.json (Win: %APPDATA%\Claude\claude_desktop_config.json)json
{
  "mcpServers": {
    "bazaar": {
      "command": "npx",
      "args": ["-y", "@forthebots/mcp-server"],
      "env": {
        "BAZAAR_API_KEY": "bz_your_key_here"
      }
    }
  }
}

💡 Merge into your existing config if you already have other MCP servers.

What happens next

1

Tools appear in your client

Your MCP client discovers all Bazaar tools automatically. No extra setup.

2

Call any tool — billing is automatic

Free-tier tools work immediately (100 calls/tool). Paid tools deduct from your prepaid balance.

3

Every call gets a signed receipt

HMAC-SHA256 receipts for auditing. Check usage at /api/v1/bazaar/usage/summary.

Alternative: Direct HTTP (no npm)

If your client supports HTTP-based MCP servers, skip npx entirely:

{
  "mcpServers": {
    "bazaar": {
      "url": "https://noui.bot/api/v1",
      "headers": {
        "Authorization": "Bearer bz_your_key_here"
      }
    }
  }
}

Learn more