mentra 0.12.0

An agent runtime for tool-using LLM applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Legacy MCP HTTP+SSE transport (protocol revision 2024-11-05).
//!
//! This is the transport MCP defined in revision 2024-11-05, where the client
//! holds a long-lived `GET` stream open and posts JSON-RPC messages to a
//! separate URL that the server names. It is distinct from Streamable HTTP;
//! see [`client`](crate::mcp::sse::client) for the differences and the full
//! lifecycle.

pub mod client;
pub mod config;
pub mod endpoint;
#[cfg(test)]
pub(crate) mod testing;
pub(crate) mod wire;