pub type McpResult<T> = Result<T, Error>;
Preferred result type alias that doesn’t conflict with std::result::Result
pub enum McpResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value