1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
//! Client transport trait for raw JSON message I/O.
//!
//! This module defines the [`ClientTransport`] trait, the low-level abstraction
//! for sending and receiving JSON-RPC messages over a transport mechanism.
//!
//! Unlike the previous `ClientTransport` which bundled request/response
//! correlation, this trait provides raw message I/O. The [`McpClient`](super::McpClient)
//! handles correlation, multiplexing, and dispatch in its background task.
use async_trait;
use crateResult;
/// Low-level transport for sending and receiving raw JSON-RPC messages.
///
/// Implementations handle the physical I/O (stdio, HTTP, WebSocket) while
/// the [`McpClient`](super::McpClient) handles JSON-RPC framing, request/response
/// correlation, and server-initiated request dispatch.
///
/// # Implementing a Custom Transport
///
/// ```rust,ignore
/// use async_trait::async_trait;
/// use tower_mcp::client::ClientTransport;
/// use tower_mcp::error::Result;
///
/// struct MyTransport { /* ... */ }
///
/// #[async_trait]
/// impl ClientTransport for MyTransport {
/// async fn send(&mut self, message: &str) -> Result<()> {
/// // Write message to the transport
/// Ok(())
/// }
///
/// async fn recv(&mut self) -> Result<Option<String>> {
/// // Read next message, None on EOF
/// Ok(None)
/// }
///
/// fn is_connected(&self) -> bool { true }
///
/// async fn close(&mut self) -> Result<()> { Ok(()) }
/// }
/// ```