organizations

Pack: opendata-canada · Endpoint: https://gateway.pipeworx.io/opendata-canada/mcp

List all Government of Canada organizations that publish datasets on open.canada.ca, returning name, title, description, and dataset count for each (up to optional limit, default 100).

Parameters

NameTypeRequiredDescription
limitnumberno

Example call

Arguments

{
  "limit": 20
}

curl

curl -X POST https://gateway.pipeworx.io/opendata-canada/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"organizations","arguments":{"limit":20}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('organizations', {
  "limit": 20
});

Response shape

Always returns: items, count

FieldTypeDescription
itemsarrayList of organizations
countintegerNumber of items returned.
Full JSON Schema
{
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "description": "List of organizations",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Organization ID"
          },
          "name": {
            "type": "string",
            "description": "Organization name"
          },
          "title": {
            "type": "string",
            "description": "Organization title"
          },
          "description": {
            "type": "string",
            "description": "Organization description"
          },
          "image_display_url": {
            "type": "string",
            "description": "Logo image URL"
          },
          "created": {
            "type": "string",
            "description": "Creation timestamp"
          },
          "is_organization": {
            "type": "boolean",
            "description": "Whether this is an organization"
          }
        }
      }
    },
    "count": {
      "type": "integer",
      "description": "Number of items returned."
    }
  },
  "required": [
    "items",
    "count"
  ]
}

Connect

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

{
  "mcpServers": {
    "opendata-canada": {
      "url": "https://gateway.pipeworx.io/opendata-canada/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026