Connects Claude to Chile's open government data portal via CKAN APIs. You get three core operations: package_search for full-text and faceted dataset queries, organization_list to browse publishing agencies, and tag_list for taxonomy navigation. Part of the Pipeworx gateway ecosystem, so you can either point directly at the datos.gob.cl endpoint or access it through the unified gateway alongside 600+ other data sources. Useful when you need Claude to pull Chilean government datasets, census info, or public sector statistics without writing custom scrapers. Supports the ask_pipeworx natural language wrapper if you want to skip manual tool calls.
datos.gob.cl CKAN MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
package_search | Full-text + faceted search. |
organization_list | Publishing orgs. |
tag_list | Tag list. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"datos-cl": {
"url": "https://gateway.pipeworx.io/datos-cl/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 Datos Cl data" })
The gateway picks the right tool and fills the arguments automatically.
MIT