list_curated_flows
Pack: bis · Endpoint: https://gateway.pipeworx.io/bis/mcp
List BIS dataflow refs we have pre-vetted, grouped by topic (rates, fx, banking, debt, credit, property, derivatives, finance). Use the flow_ref with fetch_dataset. For everything else use search_dataflows or browse https://stats.bis.org.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
topic | string | no | Optional topic filter |
Example call
curl -X POST https://gateway.pipeworx.io/bis/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_curated_flows","arguments":{}}}'
Response shape
Always returns: count, topics, flows, note
| Field | Type | Description |
|---|---|---|
count | number | Number of flows matching the filter |
topics | array | All available topics in the curated catalog |
flows | array | Curated dataflow objects |
note | string | Additional information about full catalog |
Full JSON Schema
{
"type": "object",
"properties": {
"count": {
"type": "number",
"description": "Number of flows matching the filter"
},
"topics": {
"type": "array",
"items": {
"type": "string"
},
"description": "All available topics in the curated catalog"
},
"flows": {
"type": "array",
"items": {
"type": "object",
"properties": {
"flow_ref": {
"type": "string",
"description": "SDMX dataflow reference"
},
"topic": {
"type": "string",
"description": "Topic category"
},
"title": {
"type": "string",
"description": "Human-readable flow title"
}
},
"required": [
"flow_ref",
"topic",
"title"
]
},
"description": "Curated dataflow objects"
},
"note": {
"type": "string",
"description": "Additional information about full catalog"
}
},
"required": [
"count",
"topics",
"flows",
"note"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"bis": {
"url": "https://gateway.pipeworx.io/bis/mcp"
}
}
}
See Getting Started for client-specific install steps.