pub type McpResult<T> = Result<T, McpError>;
Core MCP protocol types and error handling Common result type for MCP operations
pub enum McpResult<T> { Ok(T), Err(McpError), }
Contains the success value
Contains the error value