get_artwork

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

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/get_artwork for the schema, then POST the same URL with its arguments for the data.

Get complete details for an artwork by ID. Returns title, artist, date, medium, dimensions, description, credit line, and high-resolution image.

Parameters

NameTypeRequiredDescription
idnumberyesARTIC artwork ID (e.g., 27992)

Example call

Arguments

{
  "id": 27992
}

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_artwork","arguments":{"id":27992}}}'

TypeScript (@pipeworx/sdk)

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

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

Response shape

Always returns: id, title

FieldTypeDescription
idnumberArtwork ID
titlestringArtwork title
artiststring | nullArtist display name
datestring | nullDate of creation
mediumstring | nullMedium used (e.g., oil on canvas)
dimensionsstring | nullPhysical dimensions of artwork
credit_linestring | nullCredit line or acquisition information
descriptionstring | nullDetailed artwork description
image_idstring | nullARTIC image identifier
image_urlstring | nullURL to high-resolution image
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "number",
      "description": "Artwork ID"
    },
    "title": {
      "type": "string",
      "description": "Artwork title"
    },
    "artist": {
      "type": [
        "string",
        "null"
      ],
      "description": "Artist display name"
    },
    "date": {
      "type": [
        "string",
        "null"
      ],
      "description": "Date of creation"
    },
    "medium": {
      "type": [
        "string",
        "null"
      ],
      "description": "Medium used (e.g., oil on canvas)"
    },
    "dimensions": {
      "type": [
        "string",
        "null"
      ],
      "description": "Physical dimensions of artwork"
    },
    "credit_line": {
      "type": [
        "string",
        "null"
      ],
      "description": "Credit line or acquisition information"
    },
    "description": {
      "type": [
        "string",
        "null"
      ],
      "description": "Detailed artwork description"
    },
    "image_id": {
      "type": [
        "string",
        "null"
      ],
      "description": "ARTIC image identifier"
    },
    "image_url": {
      "type": [
        "string",
        "null"
      ],
      "description": "URL to high-resolution image"
    }
  },
  "required": [
    "id",
    "title"
  ]
}

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 September 22, 2026