remote-mcp-kernel 0.1.0-alpha.2

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
14
15
16
17
18
//! Microkernel architecture module
//!
//! This module demonstrates the microkernel design where each handler
//! operates independently and can be composed at runtime. This follows
//! the principles of separation of concerns and loose coupling.

// Module declarations
pub mod core;
pub mod factory;
pub mod types;

#[cfg(test)]
mod tests;

// Re-exports for convenience
pub use core::*;
pub use factory::*;
pub use types::*;