dataset_info
Pack: data-toulouse · Endpoint: https://gateway.pipeworx.io/data-toulouse/mcp
Get metadata for one Toulouse Métropole Open Data dataset (fields/schema, themes, record count) — call before query to learn the column names.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
dataset_id | string | yes | Dataset id from search_datasets. |
Example call
Arguments
{
"dataset_id": "toulouse_traffic_sensors"
}
curl
curl -X POST https://gateway.pipeworx.io/data-toulouse/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dataset_info","arguments":{"dataset_id":"toulouse_traffic_sensors"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('dataset_info', {
"dataset_id": "toulouse_traffic_sensors"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"data-toulouse": {
"url": "https://gateway.pipeworx.io/data-toulouse/mcp"
}
}
}
See Getting Started for client-specific install steps.