Skip to main content
Glama

ava_plan_workflow

Turn ONE natural-language DeFi request into the dependent actions it actually contains, across one chain or several. Example: "Supply 300 USDC to Morpho on Base, bridge no more than 200 to Avalanche, then supply what arrives to Aave" returns three legs with the third depending on the second and taking its amount from what the bridge actually delivered, not a plan-time guess. Same-chain works identically: "swap 100 USDC to WETH on Base then supply the WETH to Aave" records the swap OUTPUT token so the second leg is denominated in WETH. Plans nothing it cannot execute: a clause naming an unsupported operation, an unnamed venue, a zero or negative amount, or one amount split across venues comes back in unsupported with a reason rather than being guessed at. Signs nothing and moves nothing. Every leg reports executable so you can see what Ava could actually run today.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
userIdYes
messageYesThe user's request, verbatim. Do not pre-parse it.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.4/5.0
Behavior5/5

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

With no annotations, the description carries full burden and does an excellent job. It discloses side effects ('Signs nothing and moves nothing'), error handling ('Plans nothing it cannot execute... comes back in unsupported with a reason'), and output expectations ('Every leg reports executable'). It also explains how dependencies are built (third leg depends on second, amount from actual delivery). This is comprehensive and directly address what an agent needs to know.

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 lengthy but every sentence adds value: it front-loads the core purpose, gives a concrete example, explains dependency handling, and states limitations. It could be tightened, but it is well structured and not redundant, earning a 4 rather than a 3.

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

Completeness5/5

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

Given no annotations and no output schema, the description is thorough. It explains the type of request, dependent leg construction, cross-chain support, unsupported cases, and output fields (executable). While it doesn't provide a full response schema, it gives enough for an agent to call it correctly and interpret the result, which is strong for a complex tool.

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 coverage is 50% (only message is described in the schema, with 'The user's request, verbatim. Do not pre-parse it.'). The description adds context about what the message should contain (DeFi request) and gives examples, but it does not add anything about userId, which remains unexplained in both the schema and description. Thus the description compensates for message but not for the undocumented parameter, landing at a baseline 3.

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?

States a specific verb+resource: 'Turn ONE natural-language DeFi request into the dependent actions it actually contains.' The description immediately distinguishes it from execution tools by noting it 'Signs nothing and moves nothing,' and the examples clarify the cross-chain dependency modeling. It is clearly differentiated from siblings like ava_lend_execute or ava_approve_execute.

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?

Explains when to use it: for breaking a single complex request into dependent executable steps, including cross-chain. It implies it is the planning step before execution, and explicitly states it does not sign or move funds, which signals it is not for execution. However, it does not explicitly name alternatives (e.g., ava_plan_standing) or state conditions for when not to use it, so it stops short of a 5.

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.

Resources