Connect your MCP client to Agent Bazaar in 30 seconds. Every tool call is metered, receipted, and billed transparently.
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.
{
"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.
Your MCP client discovers all Bazaar tools automatically. No extra setup.
Free-tier tools work immediately (100 calls/tool). Paid tools deduct from your prepaid balance.
HMAC-SHA256 receipts for auditing. Check usage at /api/v1/bazaar/usage/summary.
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"
}
}
}
}