list_cards
Browse and filter Metabase cards and questions to discover available data queries, find specific card types, or view all system questions with optional filtering by ownership, bookmarks, or database relationships.
Instructions
š [SAFE] List Metabase cards/questions with optional filtering. Use this to discover available cards, find cards by type, or see all questions in the system. Can return large results (15k+ cards). Risk: None - read-only, but may be slow with many cards.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| filter | No | Filter type: all (all cards), mine (my cards), bookmarked, database, table, using_model, using_segment, archived | all | 
| modelId | No | Model ID for filtering (only when filter=using_model) | 
Input Schema (JSON Schema)
{
  "properties": {
    "filter": {
      "default": "all",
      "description": "Filter type: all (all cards), mine (my cards), bookmarked, database, table, using_model, using_segment, archived",
      "enum": [
        "all",
        "mine",
        "bookmarked",
        "database",
        "table",
        "using_model",
        "using_segment",
        "archived"
      ],
      "type": "string"
    },
    "modelId": {
      "description": "Model ID for filtering (only when filter=using_model)",
      "minimum": 1,
      "type": "integer"
    }
  },
  "type": "object"
}