list_geounits
Pack: unesco-uis · Endpoint: https://gateway.pipeworx.io/unesco-uis/mcp
List UNESCO UIS geographic units (countries/regions) with their ISO3 code (id), name and type. Use the id as geoUnit in get_data. Optional case-insensitive name substring filter.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
search | string | no | Case-insensitive substring matched against country/region name, e.g. “brazil”. |
limit | number | no | Max results to return (default 300). |
Example call
Arguments
{
"search": "brazil"
}
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":"list_geounits","arguments":{"search":"brazil"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_geounits', {
"search": "brazil"
});
More examples
{
"limit": 50
}
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.