Build your dashboard

Customize your workspace dashboard with widgets that surface the metrics you care about — velocity, cycle time, project completion, and more.

  1. 1 Open your workspace dashboard

    The dashboard is the first thing you see after login. It shows your personal widget layout for the current workspace.

  2. 2 Add a widget

    Click Add widget in the top-right corner, or open the command palette with Cmd+K and type "Add widget".

  3. 3 Choose a widget type

    Pick from the available types: metric card, project completion, cycle time, lead time, velocity, or expected delivery.

  4. 4 Configure the widget

    Give it a title and scope it to a specific project or make it workspace-wide. Each widget type has its own configuration options.

  5. 5 Arrange your layout

    Drag widgets to rearrange them. The grid auto-saves your layout per device type — web, tablet, and mobile each get their own arrangement.

  6. 6 Remove a widget

    Click the widget menu (three dots) and select Delete to remove a widget from your dashboard.

  7. 7 Manage via MCP

    You can also create widgets and save layouts programmatically through MCP tools.

    // Create a velocity widget scoped to a project create_widget: { "workspace_id": "...", "type": "velocity", "title": "Sprint velocity", "project_id": "..." } // Save your widget layout save_widget_layout: { "workspace_id": "...", "device_type": "web", "items": [{ "config_id": "...", "x": 0, "y": 0, "w": 2, "h": 1 }] }

Tips

  • Each team member has their own layout — your dashboard is personal to you.
  • Widget data refreshes automatically via workspace events. No manual reload needed.
  • Use the metric type for custom KPI cards that track any numeric value.

Next steps