@last9/mcp-server
Advanced tools
+1
-1
| { | ||
| "name": "@last9/mcp-server", | ||
| "version": "0.7.1", | ||
| "version": "0.7.2", | ||
| "description": "Last9 MCP Server - Model Context Protocol server implementation for Last9", | ||
@@ -5,0 +5,0 @@ "bin": { |
+32
-0
@@ -282,2 +282,10 @@ # Last9 MCP Server | ||
| ### Custom Dashboards | ||
| - **`list_dashboards`** — All custom dashboards in your org: IDs, names, and metadata | ||
| - **`get_dashboard`** — Full dashboard definition by ID, including panels and queries | ||
| - **`create_dashboard`** — Create a new custom dashboard with panels, queries, and metadata | ||
| - **`update_dashboard`** — Update an existing dashboard by ID (readonly system dashboards return an error) | ||
| - **`delete_dashboard`** — Delete a custom dashboard by ID | ||
| ### Fuzzy Name Resolution | ||
@@ -588,2 +596,26 @@ | ||
| ### list_dashboards | ||
| No parameters. Returns all custom dashboards in the org as a JSON array with `id`, `name`, and metadata. | ||
| ### get_dashboard | ||
| - `id` (string, required): Dashboard UUID. | ||
| - `region` (string, optional): Region for panel query population. Defaults to configured datasource region. | ||
| ### create_dashboard | ||
| - `dashboard` (object, required): Dashboard definition with `name` and `panels[]`. Each panel requires `name`, `version`, `layout` (`x`, `y`, `w`, `h`), `visualization.type`, and `queries[]`. | ||
| - `metadata` (object, optional): Dashboard metadata — `_category` and `_type` fields (e.g. `{"_category":"custom","_type":"metrics"}`). | ||
| ### update_dashboard | ||
| - `id` (string, required): Dashboard UUID to update. | ||
| - `dashboard` (object, required): Full replacement dashboard body (same shape as create). | ||
| - `metadata` (object, optional): Replacement metadata. Readonly system dashboards return a 403 error. | ||
| ### delete_dashboard | ||
| - `id` (string, required): Dashboard UUID to delete. Readonly system dashboards cannot be deleted. | ||
| </details> | ||
@@ -590,0 +622,0 @@ |
38042
4.12%630
5.35%