list_curated_flows
Pack: oecd · Endpoint: https://gateway.pipeworx.io/oecd/mcp
List OECD dataflow refs we have pre-vetted, grouped by topic (gdp, labour, prices, finance, households, health, demographics, projections, tax, education, environment, technology). Pass the flow_ref to fetch_dataset. For everything else use search_dataflows or browse https://data-explorer.oecd.org.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
topic | string | no | Optional topic filter |
Example call
Arguments
{
"topic": "gdp"
}
curl
curl -X POST https://gateway.pipeworx.io/oecd/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_curated_flows","arguments":{"topic":"gdp"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_curated_flows', {
"topic": "gdp"
});
More examples
{}
Response shape
Always returns: count, topics, flows, note
| Field | Type | Description |
|---|---|---|
count | number | Number of flows in result |
topics | array | Available topics across all curated flows |
flows | array | Curated dataflow definitions |
note | string | Reference to additional data sources |
Full JSON Schema
{
"type": "object",
"properties": {
"count": {
"type": "number",
"description": "Number of flows in result"
},
"topics": {
"type": "array",
"items": {
"type": "string"
},
"description": "Available topics across all curated flows"
},
"flows": {
"type": "array",
"items": {
"type": "object",
"properties": {
"flow_ref": {
"type": "string",
"description": "SDMX dataflow reference identifier"
},
"topic": {
"type": "string",
"description": "Topic category (gdp, labour, prices, etc.)"
},
"title": {
"type": "string",
"description": "Human-readable dataflow title"
},
"notes": {
"type": "string",
"description": "Optional additional notes"
}
},
"required": [
"flow_ref",
"topic",
"title"
]
},
"description": "Curated dataflow definitions"
},
"note": {
"type": "string",
"description": "Reference to additional data sources"
}
},
"required": [
"count",
"topics",
"flows",
"note"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"oecd": {
"url": "https://gateway.pipeworx.io/oecd/mcp"
}
}
}
See Getting Started for client-specific install steps.