bonanza_search_by_category
Pack: bonanza · Endpoint: https://gateway.pipeworx.io/bonanza/mcp
Search active Bonanza marketplace listings within a category ID (Bonapitit findItemsByCategory). Requires a Bonanza API devID.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
category_id | string | yes | Bonanza category ID |
entries_per_page | number | no | 1-100 (default 25) |
page_number | number | no | Page number, 1-based (default 1) |
Example call
Arguments
{
"category_id": "1",
"entries_per_page": 10,
"_apiKey": "your-bonanza-devid"
}
curl
curl -X POST https://gateway.pipeworx.io/bonanza/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"bonanza_search_by_category","arguments":{"category_id":"1","entries_per_page":10,"_apiKey":"your-bonanza-devid"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('bonanza_search_by_category', {
"category_id": "1",
"entries_per_page": 10,
"_apiKey": "your-bonanza-devid"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"bonanza": {
"url": "https://gateway.pipeworx.io/bonanza/mcp"
}
}
}
See Getting Started for client-specific install steps.