List Jedox Databases
jedox_list_databasesList all databases in a Jedox instance, returning IDs and structure counts, to find the database ID needed for further operations, excluding system databases by default.
Instructions
List all databases (models) in the Jedox instance.
Returns an array of databases with their IDs, names, and structure counts. Use the returned 'id' field in all subsequent database operations.
By default, hides Jedox internal system databases. Set include_system=true to see them.
Returns: Array of { id, name, numberOfDimensions, numberOfCubes, status, typeLabel }
Example: Use this first to find the database_id before calling jedox_list_dimensions.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| include_system | No | Include Jedox system databases (type=system/gpu) in results. Default: false. |