get_collection_items
Retrieve all cards, dashboards, and models from a specific Metabase collection to view organized content within folders using collection ID.
Instructions
š [SAFE] Get all items (cards, dashboards, models) in a specific collection. Use this to see what content is organized in a folder. Risk: None - read-only operation.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| collectionId | Yes | The ID of the collection (use "root" for root collection) | |
| models | No | Filter by item type (optional) | 
Input Schema (JSON Schema)
{
  "properties": {
    "collectionId": {
      "description": "The ID of the collection (use \"root\" for root collection)",
      "type": "string"
    },
    "models": {
      "description": "Filter by item type (optional)",
      "items": {
        "enum": [
          "card",
          "dashboard",
          "dataset"
        ],
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "collectionId"
  ],
  "type": "object"
}