get_data

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

Fetch numeric KPI values from Kolada for a specific indicator (kpiId), Swedish municipality or region (municipalityId), and year. Returns value rows broken down by gender: T=total, K=women (kvinnor), M=men (män); non-gendered KPIs return only T.

Parameters

NameTypeRequiredDescription
kpiIdstringyesKPI id from search_kpi, e.g. “N15428”.
municipalityIdstringyesMunicipality/region id from list_municipalities, e.g. “0180” (Stockholm).
yearintegeryesFour-digit year, e.g. 2022.

Example call

Arguments

{
  "kpiId": "N15428",
  "municipalityId": "0180",
  "year": 2022
}

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":"get_data","arguments":{"kpiId":"N15428","municipalityId":"0180","year":2022}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_data', {
  "kpiId": "N15428",
  "municipalityId": "0180",
  "year": 2022
});

More examples

{
  "kpiId": "N15501",
  "municipalityId": "1480",
  "year": 2023
}

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