get_artist

Pack: artic · Endpoint: https://gateway.pipeworx.io/artic/mcp

Get an artist’s biography and their artworks by ID. Returns name, birth/death dates, bio text, and linked artwork IDs.

Parameters

NameTypeRequiredDescription
idnumberyesARTIC artist ID

Example call

Arguments

{
  "id": 1234
}

curl

curl -X POST https://gateway.pipeworx.io/artic/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_artist","arguments":{"id":1234}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_artist', {
  "id": 1234
});

Response shape

Always returns: id, name, artwork_ids

FieldTypeDescription
idnumberArtist ID
namestringArtist name
birth_datenumber | nullBirth year or date
death_datenumber | nullDeath year or date
descriptionstring | nullArtist biography or description
artwork_idsarrayIDs of artworks by this artist
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "number",
      "description": "Artist ID"
    },
    "name": {
      "type": "string",
      "description": "Artist name"
    },
    "birth_date": {
      "type": [
        "number",
        "null"
      ],
      "description": "Birth year or date"
    },
    "death_date": {
      "type": [
        "number",
        "null"
      ],
      "description": "Death year or date"
    },
    "description": {
      "type": [
        "string",
        "null"
      ],
      "description": "Artist biography or description"
    },
    "artwork_ids": {
      "type": "array",
      "items": {
        "type": "number"
      },
      "description": "IDs of artworks by this artist"
    }
  },
  "required": [
    "id",
    "name",
    "artwork_ids"
  ]
}

Connect

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

{
  "mcpServers": {
    "artic": {
      "url": "https://gateway.pipeworx.io/artic/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026