list_datasets
Pack: nsi-bg · Endpoint: https://gateway.pipeworx.io/nsi-bg/mcp
List NSI Bulgaria open-data datasets with their numeric id and English (or Bulgarian) name.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
filter | string | no | Case-insensitive substring to match against dataset names. |
lang | string | no | Language of dataset names. Default en. |
Example call
Arguments
{
"filter": "population"
}
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":"list_datasets","arguments":{"filter":"population"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_datasets', {
"filter": "population"
});
More examples
{
"filter": "inflation",
"lang": "bg"
}
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.