mcp_protocol_sdk/server/
mod.rs

1//! MCP server implementation
2//!
3//! This module provides the main server implementation for the Model Context Protocol.
4
5pub mod handlers;
6pub mod lifecycle;
7pub mod mcp_server;
8
9// Re-export the main server type
10pub use mcp_server::McpServer;