mcprotocol-rs 0.1.5

A Rust implementation of the Model Context Protocol (MCP)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod client_features;
pub mod error;
pub mod protocol;
pub mod server_features;
pub mod transport;

pub use client_features::*;
pub use error::Error;
pub use protocol::*;
pub use server_features::*;
pub use transport::*;

/// Result type for MCP operations
pub type Result<T> = std::result::Result<T, Error>;