Skip to main content

deck_mcp/
lib.rs

1//! deck-mcp — MCP client using JSON-RPC over stdio.
2//!
3//! Phase 1 implements the protocol surface directly (initialize, `list_tools`,
4//! `call_tool`) without depending on the full `rmcp` SDK so we keep our
5//! dependency graph slim and our wire format auditable. Phase 2 will swap
6//! the transport layer for `rmcp` once its API stabilizes.
7
8pub mod stdio;
9pub mod wire;
10
11pub use stdio::StdioMcpClient;