data360_get_data

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

Fetch observations for one Data360 series. DATABASE_ID selects the source database (e.g. WB_WDI), INDICATOR is the code from data360_search_indicators (e.g. WB_WDI_SP_POP_TOTL), REF_AREA is an ISO3 country code (e.g. BRA, USA). Returns SDMX-style records with OBS_VALUE, TIME_PERIOD, UNIT_MEASURE and disaggregation attributes (SEX, AGE, etc.). Omit TIME_PERIOD for the full series.

Parameters

NameTypeRequiredDescription
DATABASE_IDstringyesSource database ID, e.g. “WB_WDI”.
INDICATORstringyesIndicator code, e.g. “WB_WDI_SP_POP_TOTL”.
REF_AREAstringyesISO3 country/region code, e.g. “BRA”, “USA”, “WLD”.
TIME_PERIODstringnoOptional single year, e.g. “2020”.
skipnumbernoOffset for pagination (default 0).
topnumbernoMax observations to return (default 100).

Example call

Arguments

{
  "DATABASE_ID": "WB_WDI",
  "INDICATOR": "WB_WDI_SP_POP_TOTL",
  "REF_AREA": "USA"
}

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_get_data","arguments":{"DATABASE_ID":"WB_WDI","INDICATOR":"WB_WDI_SP_POP_TOTL","REF_AREA":"USA"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('data360_get_data', {
  "DATABASE_ID": "WB_WDI",
  "INDICATOR": "WB_WDI_SP_POP_TOTL",
  "REF_AREA": "USA"
});

More examples

{
  "DATABASE_ID": "WB_WDI",
  "INDICATOR": "WB_WDI_NY_GDP_PCAP_CD",
  "REF_AREA": "BRA",
  "TIME_PERIOD": "2020"
}

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