search_kpi

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

Find Kolada KPI (indicator) ids by title substring (Swedish). Searches ~5,000 indicators

Parameters

NameTypeRequiredDescription
titlestringyesSubstring of the indicator title (Swedish), e.g. “arbetslös” or “betyg”.
pageintegernoPage number, 1-based (default 1).
per_pageintegernoResults per page (default 30).

Example call

Arguments

{
  "title": "arbetslöshet"
}

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":"search_kpi","arguments":{"title":"arbetslöshet"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search_kpi', {
  "title": "arbetslöshet"
});

More examples

{
  "title": "betyg",
  "page": 1,
  "per_page": 50
}

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