mirror of
https://github.com/BloopAI/dev-manager-mcp.git
synced 2026-08-23 11:58:33 +00:00
I notice when the client tries to use the stop command, it doesn't always stop the dev server that's running
24 lines
536 B
TOML
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"
|