Show CKAN Organization Details
ckan_organization_showFetch organization details from a CKAN open data portal by ID or name, with options to include datasets and users.
Instructions
Get details of a specific organization.
Args:
server_url (string): Base URL of CKAN server
id (string): Organization ID or name
include_datasets (boolean): Include list of datasets (default: true)
include_users (boolean): Include list of users (default: false)
response_format ('markdown' | 'json'): Output format
Returns: Organization details with optional datasets and users
Typical workflow: ckan_organization_show → ckan_package_show (inspect a dataset) → ckan_datastore_search (query its data)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Organization ID (UUID) or machine-readable name slug (e.g., 'regione-siciliana') | |
| server_url | Yes | Base URL of the CKAN server (e.g., https://dati.gov.it/opendata) | |
| include_users | No | Include the list of users belonging to this organization | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |
| include_datasets | No | Include the list of datasets published by this organization |