dataset_info
Pack: cms · Endpoint: https://gateway.pipeworx.io/cms/mcp
Metadata for a CMS dataset by datasetId: title, description, total row count, last-modified date, themes/keywords, and downloadable resources (CSV files, data dictionaries). Use after search_datasets to inspect a dataset before pulling rows.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
datasetId | string | yes | Dataset UUID from search_datasets. |
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":"dataset_info","arguments":{"datasetId":"9767cb68-8ea9-4f0b-8179-9431abc89f11"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('dataset_info', {
"datasetId": "9767cb68-8ea9-4f0b-8179-9431abc89f11"
});
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.