[package]
edition = "2024"
name = "task-graph-mcp"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MCP server for atomic, token-efficient task management for multi-agent coordination"
homepage = "https://github.com/Oortonaut/task-graph-mcp"
readme = "README.md"
keywords = [
"mcp",
"task-management",
"multi-agent",
"ai",
"coordination",
]
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 = "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"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[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.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.uuid]
version = "1"
features = [
"v4",
"v7",
"serde",
]
[dev-dependencies.tempfile]
version = "3"