list_municipalities
Pack: kolada-se · Endpoint: https://gateway.pipeworx.io/kolada-se/mcp
Find Sweden municipality/region ids by name substring. Returns id, title, and type
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
title | string | no | Substring of the municipality/region name, e.g. “Stockholm” or “Göteborg”. |
Example call
Arguments
{
"title": "Stockholm"
}
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_municipalities","arguments":{"title":"Stockholm"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_municipalities', {
"title": "Stockholm"
});
More examples
{
"title": "Göteborg"
}
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.