hanzo-api 1.1.12

Http Api for Hanzo AI platform
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Model Context Protocol (MCP) Server-Sent Events (SSE) implementation.
//!
//! This module provides a Warp-based implementation of the MCP protocol using SSE.

mod api_sse_handlers;
pub mod api_sse_routes;
mod mcp_tools_service;

// Re-export the public components
pub use api_sse_routes::{mcp_sse_routes, SessionQuery};

// Re-export the state for custom integrations
pub use api_sse_handlers::McpState;