task-graph-mcp 0.2.2

MCP server for agent task workflows with phases, prompts, gates, and multi-agent coordination
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Web dashboard HTTP server module.
//!
//! This module provides an HTTP server for the web dashboard UI.
//! It is enabled when the `--ui=web` CLI option is passed.

mod server;
pub mod templates;

pub use server::{
    DashboardHandle, DashboardServer, DashboardStatus, start_server, start_server_with_retry,
};