get_dataset
Pack: cms · Endpoint: https://gateway.pipeworx.io/cms/mcp
Pull rows from a CMS dataset by datasetId (UUID from search_datasets). Returns an array of row objects whose keys are the dataset columns. Supports paging (size/offset), full-text keyword search across the dataset, and exact-match column filters via filters: {COLUMN: VALUE} (column names match the keys in returned rows, e.g. {“State”: “TX”}).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
datasetId | string | yes | Dataset UUID from search_datasets, e.g. “9767cb68-8ea9-4f0b-8179-9431abc89f11”. |
size | number | no | Rows per page (default 100). |
offset | number | no | Row offset for paging (default 0). |
keyword | string | no | Optional full-text search across all columns. |
filters | object | no | Optional exact-match column filters, e.g. {“State”: “TX”, “Provider_Type”: “Hospital”}. Becomes filter[COLUMN]=VALUE. |
Example call
curl -X POST https://gateway.pipeworx.io/cms/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_dataset","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"cms": {
"url": "https://gateway.pipeworx.io/cms/mcp"
}
}
}
See Getting Started for client-specific install steps.