get_database
Retrieve database information including engine type and connection details by ID to understand which database a Metabase card connects to.
Instructions
šļø [SAFE] Get database information by ID including engine type and connection details. Use this to understand which database a card connects to. Risk: None - read-only operation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| databaseId | Yes | The ID of the database to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"databaseId": {
"description": "The ID of the database to retrieve",
"minimum": 1,
"type": "integer"
}
},
"required": [
"databaseId"
],
"type": "object"
}