delete_dashboard
Removes a custom dashboard permanently from a project in the MCP Server for Coroot. Specify the project ID and dashboard ID to delete the dashboard.
Instructions
Delete a custom dashboard.
Permanently removes a dashboard from the project.
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"
}