agentic 0.0.4

Support library for building Agentic MCP and Agent2Agent based systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! The core messages format comming in and out of MCP Services

// region:    --- Section

mod mcp_error;
mod mcp_message;
mod mcp_notification;
mod mcp_request;
mod mcp_response;

pub use mcp_error::*;
pub use mcp_message::*;
pub use mcp_notification::*;
pub use mcp_request::*;
pub use mcp_response::*;

// endregion: --- Section