[package]
edition = "2024"
name = "task-graph-mcp"
version = "0.2.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MCP server for agent task workflows with phases, prompts, gates, and multi-agent coordination"
homepage = "https://github.com/Oortonaut/task-graph-mcp"
readme = "README.md"
keywords = [
"mcp",
"agent-workflow",
"multi-agent",
"ai",
"task-management",
]
categories = [
"development-tools",
"command-line-utilities",
]
license = "Apache-2.0"
repository = "https://github.com/Oortonaut/task-graph-mcp"
[lib]
name = "task_graph_mcp"
path = "src/lib.rs"
[[bin]]
name = "task-graph-mcp"
path = "src/main.rs"
[[test]]
name = "connect_workflow_tests"
path = "tests/connect_workflow_tests.rs"
[[test]]
name = "db_integration_tests"
path = "tests/db_integration_tests.rs"
[[test]]
name = "query_tests"
path = "tests/query_tests.rs"
[[test]]
name = "schema_tests"
path = "tests/schema_tests.rs"
[[test]]
name = "workflow_config_tests"
path = "tests/workflow_config_tests.rs"
[dependencies.anyhow]
version = "1"
[dependencies.arc-swap]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.8"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dirs]
version = "6"
[dependencies.flate2]
version = "1"
[dependencies.heck]
version = "0.5"
[dependencies.notify]
version = "8.2.0"
[dependencies.notify-debouncer-mini]
version = "0.7.0"
[dependencies.petname]
version = "2"
[dependencies.refinery]
version = "0.9"
features = ["rusqlite"]
[dependencies.regex-lite]
version = "0.1"
[dependencies.rmcp]
version = "0.14"
features = [
"server",
"transport-io",
]
[dependencies.rusqlite]
version = "0.37"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tower-http]
version = "0.6"
features = [
"cors",
"trace",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.urlencoding]
version = "2"
[dev-dependencies.tempfile]
version = "3"