get_dataset
ActiveTool of Cms
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 schema
{
"type": "object",
"required": [
"datasetId"
],
"properties": {
"size": {
"type": "number",
"description": "Rows per page (default 100)."
},
"offset": {
"type": "number",
"description": "Row offset for paging (default 0)."
},
"filters": {
"type": "object",
"description": "Optional exact-match column filters, e.g. {\"State\": \"TX\", \"Provider_Type\": \"Hospital\"}. Becomes filter[COLUMN]=VALUE."
},
"keyword": {
"type": "string",
"description": "Optional full-text search across all columns."
},
"datasetId": {
"type": "string",
"description": "Dataset UUID from search_datasets, e.g. \"9767cb68-8ea9-4f0b-8179-9431abc89f11\"."
}
}
}No endpoints wrapped at confidence ≥ 0.50.
Parent server
Cms
https://github.com/pipeworx-io/mcp-cms
1/7 registries