pub type HandlerResult = Result<Value, McpError>;
Result type for handlers
pub enum HandlerResult { Ok(Value), Err(McpError), }
Contains the success value
Contains the error value