Tool Call Format
The JSON envelope the model uses to request actions from DragonClaw.
{"tool": "binance_market", "action": "GET", "endpoint": "...", "params": {}}Supported tool types
Binance Market
{
"tool": "binance_market",
"action": "GET",
"endpoint": "/bapi/...",
"params": { "chainId": "CT_501" }
}Binance Spot
{
"tool": "binance_spot",
"action": "POST",
"endpoint": "/api/v3/order",
"params": {
"symbol": "BTCUSDT",
"side": "BUY",
"type": "MARKET",
"quoteOrderQty": "10"
}
}Shell
Last updated