get_artist
Pack: genius · Endpoint: https://gateway.pipeworx.io/genius/mcp
Get METADATA for a Genius artist by ID: name, Genius URL, image, follower count, alternate names, and a short “about” description. Example: get_artist({ id: 1421 })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | number,string | yes | Genius artist ID, e.g. 1421 |
_apiKey | string | no | Genius access token (optional — omit to use the platform key) |
Example call
Arguments
{
"artist_id": 3
}
curl
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":"get_artist","arguments":{"artist_id":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_artist', {
"artist_id": 3
});
Response shape
Full JSON Schema
{
"type": [
"object",
"null"
],
"description": "Artist metadata object or null if not found"
}
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.