Files
dev-manager-mcp/Cargo.toml
Louis Knight-Webb b93283b0f0 Clients should use STDIO (vibe-kanban cfddf3b2)
Instead of connecting via SSE, we should allow clients to connect via STDIO. This is a necessary change to solve some issues
2025-10-30 14:18:43 +00:00

23 lines
523 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"