Show CKAN Group Details
ckan_group_showRetrieve details of a CKAN group, including its name, description, and list of datasets. Useful for browsing groups and exploring their data collections.
Instructions
Get details of a specific group.
Args:
server_url (string): Base URL of CKAN server
id (string): Group ID or name
include_datasets (boolean): Include list of datasets (default: true)
response_format ('markdown' | 'json'): Output format
Returns: Group details with optional datasets
Typical workflow: ckan_group_show → ckan_package_show (inspect a dataset) → ckan_datastore_search (query its data)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Group ID (UUID) or machine-readable name slug (e.g., 'transport', 'energia') | |
| server_url | Yes | Base URL of the CKAN server (e.g., https://dati.gov.it/opendata) | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |
| include_datasets | No | Include the list of datasets belonging to this group |