MusicBrainz
live MusicSearch artists and releases, and retrieve detailed discography and track listings from MusicBrainz
4 tools
0ms auth
free tier 50 calls/day
Tools
search_artists
required: query Search for music artists by name using the MusicBrainz database.
Parameters
Name Type Description
query req string Artist name or search query. limit opt number Maximum number of results to return. Defaults to 10. Try it
Response
get_artist
required: id Get detailed information about an artist including their release list. Use the MusicBrainz ID from search_artists.
Parameters
Name Type Description
id req string MusicBrainz artist ID (UUID). Try it
Response
search_releases
required: query Search for albums and releases by title or query.
Parameters
Name Type Description
query req string Release title or search query. limit opt number Maximum number of results to return. Defaults to 10. Try it
Response
get_release
required: id Get detailed information about a release including its full track listing. Use the MusicBrainz ID from search_releases.
Parameters
Name Type Description
id req string MusicBrainz 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"); Related packs
Other Pipeworx packs in the same categories (Music):