get_dataset

Pack: nsi-bg · Endpoint: https://gateway.pipeworx.io/nsi-bg/mcp

Fetch a single NSI Bulgaria dataset by numeric id as a JSON-stat 2.0 object

Parameters

NameTypeRequiredDescription
idstringyesNumeric dataset id, e.g. “107”.
langstringnoLabel language. Default en.

Example call

Arguments

{
  "id": "107"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_dataset', {
  "id": "107"
});

More examples

{
  "id": "242",
  "lang": "en"
}

Connect

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

{
  "mcpServers": {
    "nsi-bg": {
      "url": "https://gateway.pipeworx.io/nsi-bg/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 31, 2026