mcpr 0.2.3

Rust implementation of Anthropic's Model Context Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! MCP schema definitions

pub mod client;
pub mod common;
pub mod json_rpc;
pub mod server;

// Re-export all schema types
pub use client::*;
pub use common::*;
pub use json_rpc::*;
pub use server::*;