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
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":{}}}'
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.