remote-mcp-kernel 0.1.0-alpha.1

A microkernel-based MCP (Model Context Protocol) server with OAuth authentication and multiple transport protocols
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! HTTP handlers for MCP OAuth server
//!
//! This module contains various HTTP handlers that provide different
//! endpoints for the MCP OAuth server. Each handler follows microkernel
//! design principles with clear separation of concerns.

pub mod mcp_server;
pub mod sse_handler;
pub mod streamable_http;

pub use mcp_server::McpServer;
pub use sse_handler::{SseHandler, SseHandlerConfig};
pub use streamable_http::StreamableHttpHandler;