deck-mcp 0.1.1

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

pub mod stdio;
pub mod wire;

pub use stdio::StdioMcpClient;