exhibitions
Pack: clevelandart · Endpoint: https://gateway.pipeworx.io/clevelandart/mcp
Cleveland Museum of Art Open Access API — search the museum’s exhibition history by title keyword. Returns each exhibition’s CMA id, title, opening and closing dates and venue, covering shows mounted at and organized by the museum. Answers whether the Cleveland Museum of Art has shown an exhibition on a subject, and when it ran.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | |
limit | number | no | 1-1000 (default 25) |
Example call
Arguments
{
"query": "modern art"
}
curl
curl -X POST https://gateway.pipeworx.io/clevelandart/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"exhibitions","arguments":{"query":"modern art"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('exhibitions', {
"query": "modern art"
});
More examples
{
"query": "impressionism",
"limit": 50
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Search results for exhibitions"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"clevelandart": {
"url": "https://gateway.pipeworx.io/clevelandart/mcp"
}
}
}
See Getting Started for client-specific install steps.