list_org_units

Pack: kolada-se · Endpoint: https://gateway.pipeworx.io/kolada-se/mcp

Kolada, the Swedish municipal and regional KPI database run by RKA — list the organizational units it tracks (schools, preschools, eldercare facilities) within one of Sweden’s 290 municipalities or 21 regions.

Parameters

NameTypeRequiredDescription
titlestringnoSubstring of the unit name (Swedish), e.g. “skola” or “förskola”.
municipalityIdstringnoRestrict to a municipality/region id, e.g. “0180”.

Example call

Arguments

{
  "title": "skola",
  "municipalityId": "0180"
}

curl

curl -X POST https://gateway.pipeworx.io/kolada-se/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_org_units","arguments":{"title":"skola","municipalityId":"0180"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('list_org_units', {
  "title": "skola",
  "municipalityId": "0180"
});

More examples

{
  "title": "förskola"
}

Connect

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

{
  "mcpServers": {
    "kolada-se": {
      "url": "https://gateway.pipeworx.io/kolada-se/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 1, 2026