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
| Name | Type | Required | Description |
|---|---|---|---|
DATABASE_ID | string | yes | Source database ID, e.g. “WB_WDI”. |
INDICATOR | string | yes | Indicator code, e.g. “WB_WDI_SP_POP_TOTL”. |
REF_AREA | string | yes | ISO3 country/region code, e.g. “BRA”, “USA”, “WLD”. |
TIME_PERIOD | string | no | Optional single year, e.g. “2020”. |
skip | number | no | Offset for pagination (default 0). |
top | number | no | Max 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.