rijks_object_image
Pack: rijksmuseum · Endpoint: https://gateway.pipeworx.io/rijksmuseum/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/rijks_object_image for the schema, then POST the same URL with its arguments for the data.
Image URLs for one Rijksmuseum object: the IIIF Image API 3 service, full-resolution pixel dimensions, a full-size JPEG, a scaled JPEG at a width you choose, a thumbnail, and the object’s rights statement (most of the collection is public domain). Says plainly when an object has no published image rather than returning a broken link. Keyless. Example: rijks_object_image({ id: “200107928”, width: 1200 }).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | Numeric object id, e.g. “200107928”, or its id.rijksmuseum.nl URI. |
width | number | no | Pixel width for image_scaled_url, 100-4000. Default 1000. |
Example call
Arguments
{
"id": "200107928",
"width": 1200
}
curl
curl -X POST https://gateway.pipeworx.io/rijksmuseum/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"rijks_object_image","arguments":{"id":"200107928","width":1200}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('rijks_object_image', {
"id": "200107928",
"width": 1200
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"rijksmuseum": {
"url": "https://gateway.pipeworx.io/rijksmuseum/mcp"
}
}
}
See Getting Started for client-specific install steps.