Reverb

live MarketsMusic

Reverb MCP — the musical-instrument marketplace

4 tools
0ms auth
free tier 50 calls/day

Tools

reverb_listing

One Reverb.com listing in full, by listing ID: title, make, model, year, finish, condition, seller description, asking and buyer price, offer/inventory state, categories, photos and shipping rates by

No parameters required.

Try it
reverb_shop

Reverb.com seller profile by shop slug: shop name, location, feedback count and rating, preferred-seller status, return policy and shipping posture. Answers "who is this seller and what is their track

No parameters required.

Try it
reverb_categories

The Reverb.com category tree — root product types (electric guitars, effects and pedals, amps, keyboards and synths, drums, pro audio, folk instruments) and their sub-categories, with the slugs and UU

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.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/reverb/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/reverb/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"reverb_search","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("reverb_search", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("reverb mcp — the musical-instrument marketplace");