Skip to main content
Glama

strategy_vault_create

Destructive

Create a vault strategy -- a target-allocation basket held via rebalancing.

Shares the rebalance executor -- identical config/mechanics to strategy_rebalance_create (target_allocation mint->weight, drift_threshold_pct) -- framed as a passive basket rather than an active rebalance loop. No external vault/LP deposit (hard rule 1): the non-custodial swap pipeline only rotates spot holdings toward the target weights.

Direction (optional, deterministic signal): direction_mode / allow_short / regime_override -- see strategy_dca_create.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
riskNo
allow_shortNo
slippage_bpsNo
direction_modeNo
wallet_addressYes
regime_overrideNo
interval_secondsNo
target_allocationYes
drift_threshold_pctNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already indicate this is a non-read-only, destructive operation, but the description adds substantive behavioral context: there is no external vault/LP deposit, the swap pipeline is non-custodial, and it only rotates spot holdings toward target weights. This meaningfully clarifies what the tool actually does and does not do beyond the annotation flags.

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

Conciseness4/5

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

The description is efficiently structured with the core purpose front-loaded, followed by the most important behavioral distinction and a pointer to sibling docs. The phrase 'hard rule 1' is an unexplained internal reference that costs a point, since an external agent may not know what rule 1 is.

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?

Given the tool has 9 parameters and output schema, the description covers the central semantics and routes the agent to strategy_dca_create for reusable direction config. It is mostly complete for selection and invocation, though the unexplained 'hard rule 1' and underspecified parameters like risk prevent a perfect score.

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

Parameters3/5

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

Schema description coverage is 0%, so the description must carry the parameter-semantics burden. It does explain target_allocation as mint->weight, drift_threshold_pct, and the direction-related parameters (direction_mode, allow_short, regime_override), but it leaves risk, slippage_bps, wallet_address, and interval_seconds without semantic guidance. This partial compensation warrants a mid-range score.

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 clear verb and resource: 'Create a vault strategy', then defines it as a 'target-allocation basket held via rebalancing'. It differentiates itself from strategy_rebalance_create by framing this as a passive basket rather than an active rebalance loop, so an agent can distinguish the tool from its closest sibling.

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 names the closely related strategy_rebalance_create and explicitly states that this tool shares the same executor but is a passive-basket framing. It also points to strategy_dca_create for the directional parameters, giving an agent a clear path to related alternatives. It stops short of an explicit when-to-use vs. when-not-to-use list, so it loses one point.

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