list_organizations

Pack: govdata-de · Endpoint: https://gateway.pipeworx.io/govdata-de/mcp

List publishing organizations (federal ministries, Länder, municipalities, agencies) on GovData.de (CKAN organization_list).

Parameters

NameTypeRequiredDescription
limitnumbernoMax orgs, 1-1000 (default 100).

Example call

Arguments

{
  "limit": 100
}

curl

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

TypeScript (@pipeworx/sdk)

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

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

Connect

Add this to your MCP client config:

{
  "mcpServers": {
    "govdata-de": {
      "url": "https://gateway.pipeworx.io/govdata-de/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 1, 2026