rust_mcp_transport/
lib.rs

1// Copyright (c) 2025 mcp-rust-stack
2// Licensed under the MIT License. See LICENSE file for details.
3// Modifications to this file must be documented with a description of the changes made.
4
5mod client_sse;
6pub mod error;
7mod mcp_stream;
8mod message_dispatcher;
9mod sse;
10mod stdio;
11mod transport;
12mod utils;
13
14pub use client_sse::*;
15pub use message_dispatcher::*;
16pub use sse::*;
17pub use stdio::*;
18pub use transport::*;
19
20// Type alias for session identifier, represented as a String
21pub type SessionId = String;