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
| Name | Type | Required | Description |
|---|---|---|---|
id | number | yes | ARTIC 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
| Field | Type | Description |
|---|---|---|
id | number | Artwork ID |
title | string | Artwork title |
artist | string | null | Artist display name |
date | string | null | Date of creation |
medium | string | null | Medium used (e.g., oil on canvas) |
dimensions | string | null | Physical dimensions of artwork |
credit_line | string | null | Credit line or acquisition information |
description | string | null | Detailed artwork description |
image_id | string | null | ARTIC image identifier |
image_url | string | null | URL 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.