get_exhibitions

Pack: artic · Endpoint: https://gateway.pipeworx.io/artic/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/get_exhibitions for the schema, then POST the same URL with its arguments for the data.

Browse current and past exhibitions at the Art Institute. Returns exhibition titles, descriptions, and status (active or closed).

Parameters

NameTypeRequiredDescription
limitnumbernoNumber 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

FieldTypeDescription
totalnumberTotal number of exhibitions
exhibitionsarray
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.

Regenerated from source · build September 22, 2026