pub type HandlerFn<Req, Res> = Arc<dyn Fn(Req) -> BoxFuture<'static, McpResult<Res>> + Send + Sync + 'static>;
Boxed handler function for tool calls
pub struct HandlerFn<Req, Res> { /* private fields */ }