This server connects Claude to the UNESCO Institute for Statistics database without requiring an API key. It's part of the Pipeworx gateway ecosystem, which aggregates 673+ data sources behind a unified MCP interface. You can either call tools directly or use the ask_pipeworx function to query in plain English, and the gateway handles tool selection and argument mapping automatically. Useful when you need education statistics, literacy rates, research metrics, or other UNESCO data in your agent workflows. The streamable-http transport means you can add it to any MCP client with just a URL, no local process required.
UNESCO Institute for Statistics (UIS) MCP — keyless.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"unesco-uis": {
"url": "https://gateway.pipeworx.io/unesco-uis/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Unesco Uis data" })
The gateway picks the right tool and fills the arguments automatically.
MIT