Appearance
Dashboards
Live views assembled from your data.
5 tools — 2 read, 3 write.
| Tool | What it does | |
|---|---|---|
create_dashboard | write | Create a persistent dashboard with live widgets. |
delete_dashboard | write | Permanently delete a dashboard. |
get_dashboard | read | Get the full definition of a dashboard by id. |
list_dashboards | read | List all dashboards in this organization. |
update_dashboard | write | Update a dashboard. |
Calling these
Over MCP, find one with search_tools, then run it with execute_tool. Over REST, POST /api/capabilities/<tool> with the arguments as the JSON body. Either way, fetch the input schema for the tool you're about to call rather than guessing — get_tool_schema over MCP, or GET /api/capabilities?name=<tool> over REST.
See How the API works for auth, errors and the shared envelope.