dashboard
title: Dashboard sidebar_label: Dashboard (7) sidebar_position: 7 doc_type: reference
Dashboard
Overview
View statistics, trends, and KPIs for your workspace.
Prerequisites
- API key with the MCP preset and required scopes
- Configured MCP client (see Configuration)
Quick start examples
View KPIs
- Display a KPI summary :
{
"name": "dashboard_overview",
"arguments": {}
}
- View API usage trends :
{
"name": "dashboard_api_trends",
"arguments": {}
}
dashboard_agent_intelligence
Get agent intelligence metrics: conversations, success rate, intent distribution, top tools.
USE WHEN:
- Need to understand agent usage patterns
- Need agent success/failure rates
- Need to see which tools agents use most RETURNS: agentHub (conversations, intents, topTools), agentStudio (agents, executions).
| Scope | mcp.read |
| Read-only | Yes |
| Destructive | No |
| Idempotent | Yes |
Response
| Field | Type | Description |
|---|---|---|
agentHub | object | |
conversationsToday | number | |
conversationsYesterday | number | |
successRate | number | |
avgDurationSeconds | number | |
actionsRequired | number | |
intents | array | |
topTools | array | |
agentStudio | object | |
totalAgents | number | |
publishedAgents | number | |
executionsToday | number | |
topAgents | array |
Related tools :
dashboard_overview,agent_list
dashboard_alert_trend
Get hourly alert trend by severity (critical, warning, info).
USE WHEN:
- Need to monitor system alerts
- Need to identify spikes in errors or warnings RETURNS: hourly breakdown of critical/warning/info alerts.
| Scope | mcp.read |
| Read-only | Yes |
| Destructive | No |
| Idempotent | Yes |
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
hours | number | No | Time window in hours (default: 24, max: 168) (default : 24) |
Response
| Field | Type | Description |
|---|---|---|
data | array |
Related tools :
dashboard_overview
dashboard_api_trends
Get API performance trends: success rate, average response time, total endpoints.
USE WHEN:
- Need to monitor API performance
- Need to check success/error rates RETURNS: successRate, avgResponseTime (ms), totalEndpoints with trends.
| Scope | mcp.read |
| Read-only | Yes |
| Destructive | No |
| Idempotent | Yes |
Response
| Field | Type | Description |
|---|---|---|
calculatedAt | string |
Related tools :
dashboard_overview,dashboard_top_endpoints
dashboard_livedata_trends
Get live data connection trends: active connections, data freshness, sync health.
USE WHEN:
- Need to monitor data ingestion health
- Need to check sync freshness score RETURNS: activeConnections, dataFreshness (0-100), syncHealth (0-100) with trends.
| Scope | mcp.read |
| Read-only | Yes |
| Destructive | No |
| Idempotent | Yes |
Response
| Field | Type | Description |
|---|---|---|
calculatedAt | string |
Related tools :
dashboard_overview,livedata_list_sources
dashboard_ontology_summary
Get ontology-specific metrics: completeness, topology, categories, daily modifications.
USE WHEN:
- Need ontology health metrics (orphan nodes, completeness)
- Need topology distribution (hub/connected/leaf/orphan)
- Need category breakdown RETURNS: KPIs with trends, topology, top categories, daily chart data.
| Scope | mcp.read |
| Read-only | Yes |
| Destructive | No |
| Idempotent | Yes |
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
espaceId | string (uuid) | No | Filter by specific espace (canvas) |
Response
| Field | Type | Description |
|---|---|---|
totalEdges | number | |
orphanNodes | number | |
categories | array | |
dailyModifications | array | |
calculatedAt | string |
Related tools :
dashboard_overview
dashboard_overview
[DISCOVERY] Get a complete dashboard overview with ontology, live data, and API trends.
USE WHEN:
- Need a high-level view of workspace health
- Need to see all KPIs at once RETURNS: ontology completeness, live data health, API success rate, weekly modifications.
| Scope | mcp.read |
| Read-only | Yes |
| Destructive | No |
| Idempotent | Yes |
Response
| Field | Type | Description |
|---|---|---|
ontology | object | |
dailyModifications | array | |
calculatedAt | string | |
liveData | object | |
apiManager | object |
Example
{
"name": "dashboard_overview",
"arguments": {}
}
dashboard_top_endpoints
Get the slowest API endpoints by average response time (last 7 days).
USE WHEN:
- Need to identify slow endpoints
- Need to optimize API performance RETURNS: path, method, avgResponseTime (ms), callCount.
| Scope | mcp.read |
| Read-only | Yes |
| Destructive | No |
| Idempotent | Yes |
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | number | No | Number of endpoints to return (default: 5) (default : 5) |
Response
| Field | Type | Description |
|---|---|---|
endpoints | array |
Related tools :
dashboard_api_trends
Need help?
Contact us: Support and contact.