list_committee_meetings

Pack: openparliament-ca · Endpoint: https://gateway.pipeworx.io/openparliament-ca/mcp

Committee meetings (with witnesses + evidence).

Parameters

NameTypeRequiredDescription
committee_slugstringnoCommittee slug filter
date_fromstringno
date_tostringno
limitnumberno

Example call

Arguments

{
  "committee_slug": "finance",
  "date_from": "2024-01-01",
  "date_to": "2024-03-31",
  "limit": 40
}

curl

curl -X POST https://gateway.pipeworx.io/openparliament-ca/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_committee_meetings","arguments":{"committee_slug":"finance","date_from":"2024-01-01","date_to":"2024-03-31","limit":40}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('list_committee_meetings', {
  "committee_slug": "finance",
  "date_from": "2024-01-01",
  "date_to": "2024-03-31",
  "limit": 40
});

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "List of committee meetings with witnesses and evidence, with pagination"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "openparliament-ca": {
      "url": "https://gateway.pipeworx.io/openparliament-ca/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026