list_dataflows

Pack: ecb · Endpoint: https://gateway.pipeworx.io/ecb/mcp

List ECB SDMX data flows. Optional substring filter on flow ref or name.

Parameters

NameTypeRequiredDescription
filterstringnoCase-insensitive substring filter

Example call

curl -X POST https://gateway.pipeworx.io/ecb/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_dataflows","arguments":{}}}'

Response shape

Always returns: count, dataflows

FieldTypeDescription
countnumberNumber of dataflows returned after filtering
dataflowsarrayList of available dataflows
Full JSON Schema
{
  "type": "object",
  "properties": {
    "count": {
      "type": "number",
      "description": "Number of dataflows returned after filtering"
    },
    "dataflows": {
      "type": "array",
      "description": "List of available dataflows",
      "items": {
        "type": "object",
        "properties": {
          "flow_ref": {
            "type": "string",
            "description": "Flow reference identifier"
          },
          "name": {
            "type": "string",
            "description": "Human-readable flow name"
          }
        },
        "required": [
          "flow_ref",
          "name"
        ]
      }
    }
  },
  "required": [
    "count",
    "dataflows"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "ecb": {
      "url": "https://gateway.pipeworx.io/ecb/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 21, 2026