KeiSeiKit-1.0/_primitives/_rust/kei-mcp/Cargo.toml
KeiSei84 1e3e7d1ee7 feat(orchestrator): kei pick + spawn_agent MCP tool — true multi-LLM shell (#47)
Mirror of keigit 3fec43ea. Orchestrator picker + cross-CLI sub-agent spawn via MCP.
2026-05-26 15:49:43 +07:00

36 lines
1.1 KiB
TOML

[package]
name = "kei-mcp"
version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
description = "Model Context Protocol (MCP) server — exposes atom registry over stdio JSON-RPC"
authors.workspace = true
license.workspace = true
[[bin]]
name = "kei-mcp"
path = "src/main.rs"
[lib]
name = "kei_mcp"
path = "src/lib.rs"
[dependencies]
serde = { workspace = true }
serde_json = { workspace = true }
# v0.39: io-std added for tokio::io::stdin/stdout used by the MCP stdio
# transport in main.rs (workspace tokio doesn't enable io-std by default).
tokio = { workspace = true, features = ["io-std"] }
anyhow = { workspace = true }
kei-atom-discovery = { path = "../kei-atom-discovery" }
kei-skills = { path = "../kei-skills" }
[dev-dependencies]
tempfile = { workspace = true }
# test-util: needed by tests/tools_call_timeout.rs for tokio::time::advance + Builder::start_paused
tokio = { workspace = true, features = ["test-util"] }
[package.metadata.keisei]
backend = "none"
description = "MCP server exposing atoms as tools, skills as resources, over stdio JSON-RPC"
authors = ["Denis Parfionovich <parfionovich@keilab.io>"]