MusicBrainz
liveMusicSearch artists and releases, and retrieve detailed discography and track listings from MusicBrainz
4tools
0msauth
free tier50 calls/day
Tools
search_artistsrequired: querySearch for music artists by name using the MusicBrainz database.
Parameters
NameTypeDescription
queryreqstringArtist name or search query.limitoptnumberMaximum number of results to return. Defaults to 10.Try it
Response
get_artistrequired: idGet detailed information about an artist including their release list. Use the MusicBrainz ID from search_artists.
Parameters
NameTypeDescription
idreqstringMusicBrainz artist ID (UUID).Try it
Response
search_releasesrequired: querySearch for albums and releases by title or query.
Parameters
NameTypeDescription
queryreqstringRelease title or search query.limitoptnumberMaximum number of results to return. Defaults to 10.Try it
Response
get_releaserequired: idGet detailed information about a release including its full track listing. Use the MusicBrainz ID from search_releases.
Parameters
NameTypeDescription
idreqstringMusicBrainz release ID (UUID).Try it
Response
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/musicbrainz/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/musicbrainz/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_artists","arguments":{"query": "hello"}}}'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("search_artists", {"query":"example"});ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("search artists and releases, and retrieve detailed discography and track listings from musicbrainz");