group_list
Pack: datos-cl · Endpoint: https://gateway.pipeworx.io/datos-cl/mcp
Chilean open data catalogue (datos.gob.cl CKAN) — list thematic groups/categories used to organise Chilean open datasets. Pass all_fields=true for names and descriptions.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
all_fields | boolean | no | |
limit | number | no | |
offset | number | no |
Example call
Arguments
{
"limit": 20
}
curl
curl -X POST https://gateway.pipeworx.io/datos-cl/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"group_list","arguments":{"limit":20}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('group_list', {
"limit": 20
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "List of groups/categories from CKAN API"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"datos-cl": {
"url": "https://gateway.pipeworx.io/datos-cl/mcp"
}
}
}
See Getting Started for client-specific install steps.