List CKAN Organizations
ckan_organization_listRetrieve a list of organizations from any CKAN open data portal, with options to customize fields, sort order, and paginate results.
Instructions
List all organizations on a CKAN server.
Organizations are entities that publish and manage datasets.
Args:
server_url (string): Base URL of CKAN server
all_fields (boolean): Return full objects vs just names (default: false)
sort (string): Sort field (default: "name asc")
limit (number): Maximum results (default: 100). Use 0 to get only the count via faceting
offset (number): Pagination offset (default: 0)
response_format ('markdown' | 'json'): Output format
Returns: List of organizations with metadata. When limit=0, returns only the count of organizations with datasets.
Typical workflow: ckan_organization_list → ckan_organization_show (inspect one) → ckan_package_search with fq="organization:name" (browse its datasets)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Sort field and direction (e.g., 'name asc', 'package_count desc') | name asc |
| limit | No | Max organizations to return. Use 0 to get only the count via faceting | |
| offset | No | Pagination offset | |
| all_fields | No | Return full organization objects (true) or just name slugs (false) | |
| 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 |