[package]
edition = "2021"
rust-version = "1.86"
name = "team-mcp"
version = "0.11.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MCP server providing the shared agent mailbox for teamctl."
readme = false
license = "MIT"
repository = "https://github.com/Alireza29675/teamctl"
[[bin]]
name = "team-mcp"
path = "src/main.rs"
[[test]]
name = "bridges"
path = "tests/bridges.rs"
[[test]]
name = "channels"
path = "tests/channels.rs"
[[test]]
name = "channels_notify"
path = "tests/channels_notify.rs"
[[test]]
name = "compact_self"
path = "tests/compact_self.rs"
[[test]]
name = "hitl"
path = "tests/hitl.rs"
[[test]]
name = "reply_to_user"
path = "tests/reply_to_user.rs"
[[test]]
name = "stdio"
path = "tests/stdio.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.notify]
version = "6"
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.team-core]
version = "0.11.0"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]
[dev-dependencies.tempfile]
version = "3"