Bonanza
live ReferenceBonanza MCP — "Bonapitit" API (api.bonanza.com/docs), search + item detail
Tools
bonanza_search Search active Bonanza marketplace listings by keyword (Bonapitit findItemsByKeywords). Requires a Bonanza API devID. No sold data — orders are seller-scoped on this API.
No parameters required.
Try it
bonanza_search_by_category Search active Bonanza marketplace listings within a category ID (Bonapitit findItemsByCategory). Requires a Bonanza API devID.
No parameters required.
Try it
bonanza_get_item Get a single Bonanza listing by item ID (Bonapitit getSingleItem). Requires a Bonanza API devID.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/bonanza/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/bonanza/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"bonanza_search","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("bonanza_search", {}); // Or ask in plain English:
const answer = await px.ask("bonanza mcp — "bonapitit" api (api");