artist_similar

Pack: last-fm · Endpoint: https://gateway.pipeworx.io/last-fm/mcp

Similar artists.

Parameters

NameTypeRequiredDescription
artiststringyes
mbidstringno
limitnumberno

Example call

Arguments

{
  "artist": "The Rolling Stones"
}

curl

curl -X POST https://gateway.pipeworx.io/last-fm/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"artist_similar","arguments":{"artist":"The Rolling Stones"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('artist_similar', {
  "artist": "The Rolling Stones"
});

More examples

{
  "artist": "Led Zeppelin",
  "limit": 5
}

Response shape

FieldTypeDescription
similarartistsobjectSimilar artists container
Full JSON Schema
{
  "type": "object",
  "properties": {
    "similarartists": {
      "type": "object",
      "description": "Similar artists container",
      "properties": {
        "artist": {
          "type": "array",
          "description": "Array of similar artists",
          "items": {
            "type": "object",
            "properties": {
              "name": {
                "type": "string",
                "description": "Artist name"
              },
              "match": {
                "type": "string",
                "description": "Match percentage"
              },
              "url": {
                "type": "string",
                "description": "Artist URL"
              },
              "image": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "size": {
                      "type": "string"
                    },
                    "#text": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "last-fm": {
      "url": "https://gateway.pipeworx.io/last-fm/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026