get_dataset
Pack: bpstat-pt · Endpoint: https://gateway.pipeworx.io/bpstat-pt/mcp
Fetch a dataset as JSON-stat — THIS is how you get actual data/observations. Returns the value[]
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
domain_id | integer | yes | Parent domain id (from list_domains / list_datasets). |
dataset_id | string | yes | Dataset id, e.g. “05e2845d5d567afd88b699a91b0c20b8”. |
lang | string | no | Language: “PT” (default) or “EN”. |
Example call
Arguments
{
"domain_id": 3,
"dataset_id": "05e2845d5d567afd88b699a91b0c20b8",
"lang": "EN"
}
curl
curl -X POST https://gateway.pipeworx.io/bpstat-pt/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_dataset","arguments":{"domain_id":3,"dataset_id":"05e2845d5d567afd88b699a91b0c20b8","lang":"EN"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_dataset', {
"domain_id": 3,
"dataset_id": "05e2845d5d567afd88b699a91b0c20b8",
"lang": "EN"
});
More examples
{
"domain_id": 15,
"dataset_id": "12a3b4c5d6e7f8a9b0c1d2e3f4a5b6c7",
"lang": "PT"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"bpstat-pt": {
"url": "https://gateway.pipeworx.io/bpstat-pt/mcp"
}
}
}
See Getting Started for client-specific install steps.