list_datasets
Pack: cso-ie · Endpoint: https://gateway.pipeworx.io/cso-ie/mcp
Search the CSO catalog of ~12,600 Irish statistics tables. Returns matching tables with their matrix code (e.g. “CPM01”), label, dimensions, and last-updated date. The full catalog is large, so always pass a keyword query to narrow it.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Keyword(s) matched against table label and matrix code, e.g. “consumer price”, “population”, “QLF”. Case-insensitive. |
limit | number | no | Max results to return (default 50, max 200). |
Example call
Arguments
{
"query": "consumer price"
}
curl
curl -X POST https://gateway.pipeworx.io/cso-ie/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_datasets","arguments":{"query":"consumer price"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_datasets', {
"query": "consumer price"
});
More examples
{
"query": "population",
"limit": 20
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"cso-ie": {
"url": "https://gateway.pipeworx.io/cso-ie/mcp"
}
}
}
See Getting Started for client-specific install steps.