Skip to main content
Glama

strategy_dca_create

Destructive

Create a dollar-cost-average strategy buying usd_per_buy of target each interval.

risk (optional) overrides the safe-default risk limits: max_position_pct / max_portfolio_exposure_pct / max_single_loss_pct / max_drawdown_pct / max_daily_loss_pct (percent; <=0 disables a guard).

Direction (optional, all deterministic signals -- DYOR): direction_mode (auto | long_only | short_only | manual; default auto = follow the market regime, reducing exposure in a bear instead of accumulating), allow_short (enable real shorts via the configured perps venue), regime_override (force bull | bear | range | volatile instead of trusting detection).

Workflow: EXECUTE step -- stand up a recurring strategy after backtest_strategy validates it and get_risk_assessment sets the guards; track via strategy_status. An agent wallet without a Turnkey signer = paper-trade (unsigned tx per tick). See get_trading_workflow.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
riskNo
smartNo
allow_shortNo
usd_per_buyYes
slippage_bpsNo
source_tokenNoUSDC
target_tokenYes
direction_modeNo
wallet_addressYes
regime_overrideNo
interval_secondsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Even with annotations marking this as non-read-only and destructive, the description adds substantial behavioral context: risk overrides and how <=0 disables guards, direction_mode's default regime-following behavior, allow_short and regime_override semantics, and the paper-trade behavior for unsigned wallets. This goes well beyond the annotation hints and gives the agent a genuinely safer mental model of the tool's effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is information-dense with no filler. It front-loads the core purpose, uses backticked parameter names and clear blocks for risk, direction, and workflow, and every sentence adds useful guidance. It is long enough for the tool's complexity but still well-organized.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the core workflow, prerequisites, risk behavior, direction options, and paper-trading caveat. The output schema exists, so return-value description is not required. Still, the complete omission of what 'smart' does and the lack of detail on slippage_bps and interval_seconds leave a small but real gap for an agent deciding how to call this 11-parameter tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description carries a heavy burden and compensates well: it explains usd_per_buy, risk guard fields, direction_mode values and default, allow_short, and regime_override. However, it leaves some parameters implicit or unexplained, most notably smart, slippage_bps, source_token (beyond the default), interval_seconds, and wallet_address semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: "Create a dollar-cost-average strategy buying usd_per_buy of target each interval." This clearly defines the tool's function and distinguishes it from the many other strategy_*_create siblings, especially strategy_equity_dca_create and strategy_momentum_create.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit workflow guidance: use it as the EXECUTE step after backtest_strategy validates and get_risk_assessment sets guards, and track via strategy_status. It also mentions the paper-trading fallback for wallets without a Turnkey signer. However, it does not explicitly say when not to use it or name alternative tools for other strategy types.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.2/5.0
Disambiguation2/5

Multiple tools overlap significantly: close_perp_position vs perp_close, get_leaderboard vs get_score_leaderboard vs get_strategy_leaderboard, get_venue_status vs get_all_venues_status, send_token_social vs bulk_send_social, and get_crank_score vs get_score. Several read-only tools have nearly identical purposes, and the descriptions do not always clarify boundaries.

Naming Consistency4/5

Most tools follow a consistent verb_noun snake_case pattern (get_balances, create_strategy, set_alert, list_webhooks). However, there are deviations like 'lst_swap', 'jupiter_swap', 'flash_loan', 'sr_backtest', and the use of both 'get_' and 'list_' for reads, plus category prefixes like 'perp_' and 'strategy_' that vary in order. Overall still readable and predictable.

Tool Count1/5

177 tools is an extreme count for any server, far exceeding the 25+ threshold for 'too many'. Even a full DeFi platform does not need this many separate operations; the surface is overwhelming and clearly not well-scoped.

Completeness3/5

The domain (Solana DeFi trading) is covered extensively across swaps, perps, lending, staking, strategies, signals, and support. However, there are notable gaps: no lend_withdraw, no direct way to close a lending position, no spot order cancellation (though aggregator-based swaps may not need it), and a general lack of tiered account management. The huge number of tools makes it hard to identify missing lifecycle steps.

Resources