get_bill

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

Fetch full detail for a Canadian Parliament bill by session (e.g. “44-1”) and bill number (e.g. “C-318”) — returns title, sponsor, status, and legislative history.

Parameters

NameTypeRequiredDescription
sessionstringyesSession (e.g. “44-1”)
numberstringyesBill number (e.g. “C-318”)

Example call

Arguments

{
  "session": "44-1",
  "number": "C-318"
}

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":"get_bill","arguments":{"session":"44-1","number":"C-318"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_bill', {
  "session": "44-1",
  "number": "C-318"
});

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Detailed bill information"
}

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