get_dataset
Pack: cso-ie · Endpoint: https://gateway.pipeworx.io/cso-ie/mcp
Read a full CSO table as JSON-stat 2.0 (dimensions + flat value array). Some tables are large (the CPI table is ~60k values); use dataset_metadata first to gauge size, or use query_dataset to fetch a filtered slice instead.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
matrix | string | yes | Matrix code, e.g. “CPM01”. |
Example call
Arguments
{
"matrix": "CPM01"
}
curl
curl -X POST https://gateway.pipeworx.io/cso-ie/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_dataset","arguments":{"matrix":"CPM01"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_dataset', {
"matrix": "CPM01"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"cso-ie": {
"url": "https://gateway.pipeworx.io/cso-ie/mcp"
}
}
}
See Getting Started for client-specific install steps.