mcp-protocol 0.2.7

Protocol definitions for the Model Context Protocol (MCP)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// mcp-protocol/src/types/mod.rs
mod client;
mod server;
pub mod tool;
pub mod resource;
// Using completion/mod.rs for the module structure
pub mod completion;
pub mod prompt;
pub mod sampling;

pub use client::*;
pub use server::*;
pub use completion::*;
pub use prompt::*;
pub use sampling::*;