GnistAI GnistAI
Log in

MusicBrainz

Music metadata — artist profiles, album discographies, song/recording search.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 5 tools tools 5 5 Media

Data source: MusicBrainz (open music encyclopedia)

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/musicbrainz/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-musicbrainz": {
      "url": "https://context.gnist.ai/mcp/musicbrainz/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/musicbrainz/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "search_artists", "arguments": {"query": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/musicbrainz/

5 endpoints available:

Shell
curl "https://context.gnist.ai/rest/musicbrainz/search_artists?query=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/musicbrainz/search_artists",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "query": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc musicbrainz

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (5)

search_artists
Search for music artists by name.
ParameterTypeRequiredDescription
querystringrequired
limitintegeroptional (default: 10)
get_artist_info
Get detailed information about an artist by MusicBrainz ID.
ParameterTypeRequiredDescription
artist_idstringrequired
get_artist_releases
Get albums and releases for an artist.
ParameterTypeRequiredDescription
artist_idstringrequired
limitintegeroptional (default: 25)
search_recordings
Search for songs/recordings by title.
ParameterTypeRequiredDescription
querystringrequired
limitintegeroptional (default: 10)
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related