rijks_object
Pack: rijksmuseum · Endpoint: https://gateway.pipeworx.io/rijksmuseum/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/rijks_object for the schema, then POST the same URL with its arguments for the data.
One Rijksmuseum object in full: title, maker, date, object type, materials, place, depicted subjects, the museum’s own curatorial description, object number, rights statement and image URL. Accepts the numeric object id, its id.rijksmuseum.nl URI, or a museum object number such as “SK-C-5” (resolved for you). Keyless. Example: rijks_object({ id: “200107928” }) → The Night Watch.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | no | Numeric object id (“200107928”), its id.rijksmuseum.nl URI, or an object number (“SK-C-5”). |
object_number | string | no | Alias for id when you hold a museum object number. |
Example call
Arguments
{
"id": "SK-C-5"
}
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","arguments":{"id":"SK-C-5"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('rijks_object', {
"id": "SK-C-5"
});
More examples
{
"id": "200107928"
}
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.