//! MCP server implementation
//!
//! This module provides the main server implementation for the Model Context Protocol.
// Test types for comprehensive testing
// HTTP-specific server implementation (when HTTP feature is enabled)
// Re-export the main server type
pub use McpServer;
// Re-export HTTP server when feature is enabled
pub use HttpMcpServer;