get_data
Pack: unesco-uis · Endpoint: https://gateway.pipeworx.io/unesco-uis/mcp
Fetch UNESCO UIS statistic values: education, literacy, school enrollment/completion, science (R&D) and culture indicators. Returns {records:[{indicatorId,geoUnit,year,value}]}. Indicator IDs come from list_indicators; geoUnit is an ISO3 country code (e.g. “BRA”) from list_geounits. Both accept one or many (comma-separated) values; empty records means no data for that indicator/country/year combination.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
indicator | string | yes | Indicator ID(s) from list_indicators, e.g. “CR.1” or “10”. Multiple comma-separated: “CR.1,CR.2”. |
geoUnit | string | yes | ISO3 country/region code(s) from list_geounits, e.g. “BRA”. Multiple comma-separated: “BRA,ARG”. |
start | number | no | First year (inclusive), e.g. 2015. |
end | number | no | Last year (inclusive), e.g. 2020. |
Example call
Arguments
{
"indicator": "CR.1",
"geoUnit": "BRA",
"start": 2015,
"end": 2020
}
curl
curl -X POST https://gateway.pipeworx.io/unesco-uis/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_data","arguments":{"indicator":"CR.1","geoUnit":"BRA","start":2015,"end":2020}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_data', {
"indicator": "CR.1",
"geoUnit": "BRA",
"start": 2015,
"end": 2020
});
More examples
{
"indicator": "10,11",
"geoUnit": "BRA,ARG,CHL"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"unesco-uis": {
"url": "https://gateway.pipeworx.io/unesco-uis/mcp"
}
}
}
See Getting Started for client-specific install steps.