bote 0.90.0

MCP core service — JSON-RPC 2.0 protocol, tool registry, audit integration, and TypeScript bridge
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Transport layer — codec, stdio, and feature-gated network transports.

pub(crate) mod codec;
pub use codec::{parse_request, process_message, serialize_response};

pub mod stdio;

#[cfg(feature = "http")]
pub mod http;

#[cfg(feature = "ws")]
pub mod ws;

#[cfg(feature = "unix")]
pub mod unix;