get_card_with_parameters
Extract card ID and filter parameters from Metabase dashboard URLs to retrieve specific dashboard cards with applied filters for analysis.
Instructions
š [SAFE] Get a card with applied parameters from dashboard URL. Use this to extract card ID and parameters from Metabase dashboard URLs with filters. Risk: None - read-only operation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The full Metabase dashboard URL with encoded parameters |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "The full Metabase dashboard URL with encoded parameters",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}