endpoint-libs 2.1.3

Launch MCP services fast: describe endpoints once in RON, and endpoint-gen generates the Rust models, docs and MCP tool schemas that this crate serves over WebSocket RPC, with roles and typed errors built in.
Documentation
mod basics;
mod conn;
pub mod handler;
mod headers;
pub mod hooks;
mod listener;
pub mod mcp;
mod message;
mod push;
mod server;
mod session;
mod subs;
#[cfg(feature = "ws")]
mod tls;
pub mod toolbox;
mod traits;
pub mod transport;

mod client;
#[cfg(any(feature = "ws", feature = "ws-client"))]
pub(crate) mod tungstenite;

pub use basics::*;
pub use conn::*;
pub use headers::*;
pub use hooks::*;
pub use listener::*;
pub use message::*;
pub use server::*;
pub use session::*;
pub use subs::*;
#[cfg(feature = "ws")]
pub use tls::*;
pub use traits::*;
pub use transport::*;

pub use client::*;
#[cfg(feature = "ws")]
pub use tungstenite::*;