data360_list_databases

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

List the source databases aggregated by World Bank Data360 (e.g. WB_WDI = World Development Indicators, IMF_BOP = Balance of Payments, WB_EDSTATS = Education Statistics). Returns each DATABASE_ID with its full name and indicator count. Use a DATABASE_ID here to scope data360_search_indicators and data360_get_data.

Parameters

NameTypeRequiredDescription
topnumbernoMax databases to return (default 200, the full list).

Example call

Arguments

{
  "top": 200
}

curl

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

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('data360_list_databases', {
  "top": 200
});

More examples

{
  "top": 10
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 31, 2026