Tools/music
Music Metadata

Music Metadata

Active

Your agent confuses artists, releases, and IDs; this returns real music metadata with stable identifiers.

2 tools

Open music metadata: search and look up artists, releases, recordings, works, and labels with stable identifiers (MBIDs) and rich relationships. Core data is public domain (CC0).

Knowledge & Referencemusicartistsalbumsrecordingsdiscography

Tools (2)

Look up a music entity by its MusicBrainz ID, optionally including related data.

0.1 credits/call ($0.0001) · 0.1 credit per call

Example prompts

  • Get the details for this artist MBID
  • List the releases for this artist, including release groups
  • Show the tracklist for this release

Parameters

incstringoptional

"+"-joined related data to include (e.g. "recordings+releases"). Valid values depend on entity type.

mbidstringrequired

MusicBrainz ID (UUID) of the entity.

entitystringrequired

Music entity type matching the MBID.

API Usage

curl -X POST "https://skill.askfaro.com/skills/music/run" \
  -H "Authorization: Bearer faro_<your_key>" \
  -H "Content-Type: application/json" \
  -d '{
  "intent": {
    "prompt": "Get the details for this artist MBID"
  }
}'

CLI Usage

askfaro describe music/lookup

Install pip install askfaro-cli, then askfaro auth login.

Search music entities (artists, releases, recordings, works, labels) by query.

0.1 credits/call ($0.0001) · 0.1 credit per call

Example prompts

  • Search for the artist Radiohead
  • Find the album "OK Computer"
  • Look up recordings called "Paranoid Android"

Parameters

limitintegeroptionaldefault: 25

Number of results (1-100).

querystringrequired

Lucene search query (supports field scoping, e.g. "artist:Radiohead").

entitystringrequired

Music entity type to search.

offsetintegeroptionaldefault: 0

Result offset for pagination.

API Usage

curl -X POST "https://skill.askfaro.com/skills/music/run" \
  -H "Authorization: Bearer faro_<your_key>" \
  -H "Content-Type: application/json" \
  -d '{
  "intent": {
    "prompt": "Search for the artist Radiohead"
  }
}'

CLI Usage

askfaro describe music/search

Install pip install askfaro-cli, then askfaro auth login.