get_card
Retrieve a Metabase card by ID to view its SQL query and analyze how the question is constructed for data analysis purposes.
Instructions
š [SAFE] Get a Metabase card/question by ID, including its SQL query. Use this when you need to see the SQL behind a specific question or analyze how a card is built. Risk: None - read-only operation.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| cardId | Yes | The ID of the card/question to retrieve | 
Input Schema (JSON Schema)
{
  "properties": {
    "cardId": {
      "description": "The ID of the card/question to retrieve",
      "minimum": 1,
      "type": "integer"
    }
  },
  "required": [
    "cardId"
  ],
  "type": "object"
}