pub async fn call_tool(
proxy_url: &str,
tool_name: &str,
args: &HashMap<String, Value>,
raw_args: Option<&[String]>,
) -> Result<Value, ProxyError>Expand description
Execute a tool call via the proxy server.
POST {proxy_url}/call with JSON body: { tool_name, args } Scopes are carried inside the JWT — not in the request body.