get_artwork

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

Get full details for a specific artwork. Provide the object ID from search results. Returns title, artist, date, medium, department, and high-resolution image URL.

Parameters

NameTypeRequiredDescription
object_idnumberyesMet Museum object ID (e.g., 436535)

Example call

Arguments

{
  "object_id": 436535
}

curl

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

TypeScript (@pipeworx/sdk)

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

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

Response shape

Always returns: object_id, title, artist, artist_nationality, date, medium, dimensions, department, classification, image_url, full_image_url, is_public_domain, credit_line, met_url

FieldTypeDescription
object_idnumberMet Museum object ID
titlestringArtwork title
artiststringArtist display name or ‘Unknown’
artist_nationalitystringArtist’s nationality
datestringObject date or period
mediumstringMaterials and technique
dimensionsstringPhysical dimensions
departmentstringMuseum department
classificationstringObject classification
image_urlstringSmall image URL
full_image_urlstringFull resolution image URL
is_public_domainbooleanWhether artwork is in public domain
credit_linestringCredit and acquisition information
met_urlstringMet Museum URL for artwork
Full JSON Schema
{
  "type": "object",
  "properties": {
    "object_id": {
      "type": "number",
      "description": "Met Museum object ID"
    },
    "title": {
      "type": "string",
      "description": "Artwork title"
    },
    "artist": {
      "type": "string",
      "description": "Artist display name or 'Unknown'"
    },
    "artist_nationality": {
      "type": "string",
      "description": "Artist's nationality"
    },
    "date": {
      "type": "string",
      "description": "Object date or period"
    },
    "medium": {
      "type": "string",
      "description": "Materials and technique"
    },
    "dimensions": {
      "type": "string",
      "description": "Physical dimensions"
    },
    "department": {
      "type": "string",
      "description": "Museum department"
    },
    "classification": {
      "type": "string",
      "description": "Object classification"
    },
    "image_url": {
      "type": "string",
      "description": "Small image URL"
    },
    "full_image_url": {
      "type": "string",
      "description": "Full resolution image URL"
    },
    "is_public_domain": {
      "type": "boolean",
      "description": "Whether artwork is in public domain"
    },
    "credit_line": {
      "type": "string",
      "description": "Credit and acquisition information"
    },
    "met_url": {
      "type": "string",
      "description": "Met Museum URL for artwork"
    }
  },
  "required": [
    "object_id",
    "title",
    "artist",
    "artist_nationality",
    "date",
    "medium",
    "dimensions",
    "department",
    "classification",
    "image_url",
    "full_image_url",
    "is_public_domain",
    "credit_line",
    "met_url"
  ]
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026