artist_similar
Pack: last-fm · Endpoint: https://gateway.pipeworx.io/last-fm/mcp
Similar artists.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
artist | string | yes | |
mbid | string | no | |
limit | number | no |
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
| Field | Type | Description |
|---|---|---|
similarartists | object | Similar 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.