denmark_population

Pack: dst-dk · Endpoint: https://gateway.pipeworx.io/dst-dk/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/denmark_population for the schema, then POST the same URL with its arguments for the data.

Denmark’s total population in ONE call, from Statistics Denmark (Danmarks Statistik, table FOLK1A),

Parameters

NameTypeRequiredDescription
quartersnumbernoHow many recent quarters to include in the trend (1-40, default 8). The headline figure is always the newest.

Example call

Arguments

{}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('denmark_population', {});

More examples

{
  "quarters": 4
}

Connect

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

{
  "mcpServers": {
    "dst-dk": {
      "url": "https://gateway.pipeworx.io/dst-dk/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 18, 2026