pub type McpResult<T> = Result<T, McpError>;
Result type for MCP operations
pub enum McpResult<T> { Ok(T), Err(McpError), }
Contains the success value
Contains the error value