get_metabase_collection
Retrieve a Metabase collection by ID to access its metadata, enabling users to manage and interact with BI assets through the Metabase MCP Server.
Instructions
Retrieve a single Metabase collection by ID.
Args: collection_id (int): ID of the collection.
Returns: Dict[str, Any]: Collection metadata.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| collection_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/enums/request_enum.py:1-11 (helper)The RequestMethod enum used by the handler to specify the HTTP method (GET) for the API request.
from enum import Enum, auto class RequestMethod(Enum): GET = auto() POST = auto() PUT = auto() DELETE = auto() def __str__(self): return self.name