get_dashboard
Retrieve a specific dashboard configuration, including all panels, from the MCP Server for Coroot. Input project_id and dashboard_id to access detailed monitoring and analysis data.
Instructions
Get a specific dashboard configuration.
Retrieves the full configuration of a dashboard including all panels.
Args: project_id: Project ID dashboard_id: Dashboard ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dashboard_id | Yes | ||
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"dashboard_id": {
"title": "Dashboard Id",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id",
"dashboard_id"
],
"type": "object"
}