pub type SdkResult<T> = Result<T, McpSdkError>;
pub enum SdkResult<T> { Ok(T), Err(McpSdkError), }
Contains the success value
Contains the error value