🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@last9/mcp-server

Package Overview
Dependencies
Maintainers
2
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@last9/mcp-server - npm Package Compare versions

Comparing version
0.7.1
to
0.7.2
+1
-1
package.json
{
"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": {

@@ -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 @@