pub trait ToolHandler<S_CLIENT: Clone + Send + Sync + 'static>:
Send
+ Sync
+ 'static {
// Required method
fn call(
&self,
args: Option<Value>,
state: Arc<S_CLIENT>,
) -> Pin<Box<dyn Future<Output = Result<Value, String>> + Send + 'static>>;
}