Files
dev-manager-mcp/Cargo.toml
Louis Knight-Webb afd78b614f The stop command doesn't kill the dev server (vibe-kanban 3b4e5e08)
I notice when the client tries to use the stop command, it doesn't always stop the dev server that's running
2025-10-31 17:18:42 +00:00

24 lines
536 B
TOML

[package]
name = "mcp-dev-manager"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "mcp-dev-manager"
path = "src/main.rs"
[[bin]]
name = "mcp-dev-manager-stdio"
path = "src/bin/stdio_proxy.rs"
[dependencies]
rmcp = { version = "0.8", features = ["server", "client", "transport-sse-server", "transport-sse-client-reqwest", "transport-io"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
async-trait = "0.1"
schemars = "1.0.4"
rand = "0.8"
libc = "0.2"