artist_songs
Pack: genius · Endpoint: https://gateway.pipeworx.io/genius/mcp
List an artist’s songs ranked by popularity. Returns song METADATA (id, title, artist, Genius URL) — NOT lyric text. Example: artist_songs({ artist_id: 1421, limit: 20 })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
artist_id | number,string | yes | Genius artist ID, e.g. 1421 |
limit | number | no | Max number of songs to return (default 20, max 50) |
_apiKey | string | no | Genius access token (optional — omit to use the platform key) |
Example call
curl -X POST https://gateway.pipeworx.io/genius/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"artist_songs","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"genius": {
"url": "https://gateway.pipeworx.io/genius/mcp"
}
}
}
See Getting Started for client-specific install steps.