Reverb
live MarketsMusicReverb MCP — the musical-instrument marketplace
Tools
reverb_search Search live Reverb.com listings for musical gear — guitars, amps, pedals, synths, drums, pro audio. Returns asking prices with make, model, year, finish, condition grade and seller, filterable by cate
No parameters required.
Try it
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.
curl -X POST https://gateway.pipeworx.io/reverb/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' 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.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("reverb_search", {}); // Or ask in plain English:
const answer = await px.ask("reverb mcp — the musical-instrument marketplace");