sofos 0.2.11

An interactive AI coding agent for your terminal
1
2
3
4
5
6
7
8
9
10
//! Transport-specific MCP clients. Each transport (stdio, HTTP) owns
//! its connection lifecycle and request/response loop; the shared
//! init / parse helpers and the `MCP_REQUEST_TIMEOUT` ceiling live in
//! [`super::client`].

pub mod http;
pub mod stdio;

pub use http::HttpClient;
pub use stdio::StdioClient;