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