organization_details
Pack: dati-it · Endpoint: https://gateway.pipeworx.io/dati-it/mcp
Full record for one publishing organization by slug or id (CKAN organization_show): Italian display name, description, and dataset count. Get the slug from list_organizations or a dataset record.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | Organization slug or id, e.g. “aci” or “agenzia-delle-dogane-e-dei-monopoli”. |
Example call
Arguments
{
"id": "aci"
}
curl
curl -X POST https://gateway.pipeworx.io/dati-it/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"organization_details","arguments":{"id":"aci"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('organization_details', {
"id": "aci"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"dati-it": {
"url": "https://gateway.pipeworx.io/dati-it/mcp"
}
}
}
See Getting Started for client-specific install steps.