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

NameTypeRequiredDescription
datasetIdstringyesDataset UUID from search_datasets, e.g. “9767cb68-8ea9-4f0b-8179-9431abc89f11”.
sizenumbernoRows per page (default 100).
offsetnumbernoRow offset for paging (default 0).
keywordstringnoOptional full-text search across all columns.
filtersobjectnoOptional exact-match column filters, e.g. {“State”: “TX”, “Provider_Type”: “Hospital”}. Becomes filter[COLUMN]=VALUE.

Example call

Arguments

{
  "datasetId": "9767cb68-8ea9-4f0b-8179-9431abc89f11"
}

curl

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":{"datasetId":"9767cb68-8ea9-4f0b-8179-9431abc89f11"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_dataset', {
  "datasetId": "9767cb68-8ea9-4f0b-8179-9431abc89f11"
});

More examples

{
  "datasetId": "9767cb68-8ea9-4f0b-8179-9431abc89f11",
  "size": 50,
  "offset": 0,
  "filters": {
    "State": "TX",
    "Provider_Type": "Hospital"
  }
}

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.

Regenerated from source · build August 31, 2026