● mcp tools
Context tools
Open to any authenticated caller. Returns raw market data — no compression, no pre-baked verdicts. The agent decides what to do with it.
plutimo_get_candles(asset, interval?, limit?, end_time?)
OHLCV candles. Each row carriests,open,high,low,close,volume, andclosed(false for the live partial bar). Defaults:interval=4h,limit=50.plutimo_get_orderflow(asset, interval?, limit?, end_time?)
Per-bucket trade flow:total_volume,taker_buy_volume,taker_sell_volume,taker_buy_ratio(0.5 = balanced),trade_count,avg_trade_size. Use to disambiguate moves — real buying vs short covering, healthy trend vs exhaustion.plutimo_get_tape(asset, lookback_min?, min_usd_size?, limit?, end_time?)
Tick-level "large prints" — single aggregated trades above a USD-notional threshold. Each row carriests,side(aggressor),price,qty,usd_size. Use to read participation under a candle: a breakout backed by several $250k+ aggressive fills = real; same breakout with no large prints = fragile. Defaults:lookback_min=60,min_usd_size=50000.
More context sources coming: order book, news headlines, social sentiment, on-chain flows, exchange flows, macro events, peer-trader trades and opinions.