Skip to main content
Glama

assetfare_v2_quote

Read-only

Get a fresh fee-inclusive quote for cross-chain token transfers and generate an unsigned execution plan. Compare candidates at your actual amount for cost-effective routing without signing or submitting transactions.

Instructions

Get one fresh fee-inclusive quote and caller-operated unsigned-plan handoff. Example: representative from_chain='solana', from_token='USDC', to_chain='base', to_token='USDC', amount_usd=1000. USD 1 is reachability/schema smoke only. Native-USDC economic comparison starts at USD 50 based on dated 2026-09-23 evidence, not a guarantee AssetFare is cheapest. SOL input includes a swap. Always compare fresh candidates at the actual intended amount. Read-only; never authenticates, prepares, signs, or submits.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
to_chainYesDestination chain for the v2 route: Solana, Base, Arbitrum, or Robinhood Chain. Polygon and Optimism are not destinations.
to_tokenYesOutput token symbol on to_chain. The chain-token pair must appear in current v2 capabilities.
amount_usdYesRequested input value in USD, minimum 1. USD 1 is reachability/schema smoke only; USD 50 is the native-USDC economic-comparison start based on dated 2026-09-23 evidence, not a cheapest guarantee; USD 1,000 is the primary representative amount. SOL input includes a swap. Always quote the actual intended amount.
from_chainYesSource chain for the v2 route. Polygon and Optimism are source-only and cannot be used as to_chain.
from_tokenYesInput token symbol on from_chain. The chain-token pair must appear in current v2 capabilities.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
etaYes
riskYes
as_ofYes
offerYes
routeYes
intentYes
statusYes
quote_idYes
executionYes
ttl_secondsYes
cost_summaryYes
caller_action_plan_handoffYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior5/5

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

Annotations already provide readOnlyHint=true and destructiveHint=false, but the description adds rich behavioral detail beyond them: the quote is 'fresh' and 'fee-inclusive,' SOL input includes a swap, and the cost comparison is not a guarantee ('not a guarantee AssetFare is cheapest'). The explicit 'Read-only; never authenticates, prepares, signs, or submits' reinforces the safety profile without contradicting the annotations.

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 dense but purposeful. It front-loads the action and example, then adds caveats and a read-only note. Every sentence earns its place, though the phrase 'caller-operated unsigned-plan handoff' and the dated '2026-09-23 evidence' could be simplified for readability. It is not overly verbose, but slightly more structure would improve scannability.

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 output schema exists (so return values are covered) and annotations already provide the read-only/destructive profile, the description covers the essential usage details: a representative example, amount-behavior thresholds, SOL swap note, and an explicit no-auth/prepare/sign/submit guardrail. The 'unsigned-plan handoff' phrase is a bit cryptic, but the output schema likely clarifies the handoff structure. Overall, an agent has enough to correctly invoke this 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?

Schema coverage is 100%, so the baseline is 3. The description adds significant meaning beyond the schema: it provides a full example mapping all five parameters, explains the distinct semantics of amount_usd values (1 = smoke, 50 = comparison start, 1000 = representative), and warns that SOL input includes a swap. This is genuinely helpful additional context that the schema's enum and minimum descriptions do not convey.

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: 'Get one fresh fee-inclusive quote and caller-operated unsigned-plan handoff.' This clearly distinguishes it from sibling tools like prepare and session tools, and the worked example ('from_chain='solana', from_token='USDC'...') concretely pins down the tool's job. No confusion about what this tool does.

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 context about when to use the tool: amount thresholds (USD 1 smoke, USD 50 economic-comparison start, USD 1,000 representative) and a directive to 'Always compare fresh candidates at the actual intended amount.' It also states 'never authenticates, prepares, signs, or submits,' which implicitly tells the agent not to use this tool for those actions. It does not name sibling tools directly, but the exclusions are clear enough.

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