get_exhibitions
Pack: artic · Endpoint: https://gateway.pipeworx.io/artic/mcp
Browse current and past exhibitions at the Art Institute. Returns exhibition titles, descriptions, and status (active or closed).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | number | no | Number of exhibitions to return (1-100, default 10) |
Example call
Arguments
{
"limit": 10
}
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_exhibitions","arguments":{"limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_exhibitions', {
"limit": 10
});
Response shape
Always returns: total, exhibitions
| Field | Type | Description |
|---|---|---|
total | number | Total number of exhibitions |
exhibitions | array |
Full JSON Schema
{
"type": "object",
"properties": {
"total": {
"type": "number",
"description": "Total number of exhibitions"
},
"exhibitions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Exhibition ID"
},
"title": {
"type": "string",
"description": "Exhibition title"
},
"short_description": {
"type": [
"string",
"null"
],
"description": "Brief description of exhibition"
},
"status": {
"type": [
"string",
"null"
],
"description": "Exhibition status (active, closed, etc.)"
}
},
"required": [
"id",
"title"
]
}
}
},
"required": [
"total",
"exhibitions"
]
}
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.