Skip to main content
Glama

EmblemAI AgentWallet

Ethereum: ethSwapQuote

ethSwapQuote
Read-onlyIdempotent

Quote an exact-input Ethereum swap. The sellAmount may be sell-token units, a USD budget such as '$5', or 'max'. Returns a normalized conditionalOrderHandoff for explicit entry or exit orders.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sellAmountYesHow much of the SELL token to spend. Use a decimal string for sell-token units (e.g. '0.01' means 0.01 ETH), '$5' or '5 usd' for a USD budget, or 'max'. Never convert a user's USD budget yourself.
buyTokenAddressNoEthereum address of the token being received (BUY token)
sellTokenAddressNoEthereum address of the token being spent (SELL token)

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, so the safe, non-destructive nature is covered. The description adds value by revealing that the tool returns 'a normalized conditionalOrderHandoff' and that sellAmount can be a USD budget or 'max', which are behavioral details not present in 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.

Conciseness5/5

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

The description is two sentences long, front-loaded with the core purpose, and includes only essential details about sellAmount flexibility and the return type. Every sentence earns its place with no redundancy.

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 mentions the return type (conditionalOrderHandoff) which compensates for the lack of an output schema. However, it does not explain how buy/sell token addresses are determined or what happens if they are omitted, which is a minor gap given the tool's complexity but not critical due to strong annotations and schema.

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 100%, and the schema already provides a detailed description for sellAmount (including USD budget and 'max'). The tool description restates this but adds no new parameter-level information beyond what the schema provides. Baseline 3 is appropriate.

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 'Quote an exact-input Ethereum swap,' which is a specific verb (Quote) + resource (Ethereum swap) + qualifier (exact-input). This clearly distinguishes it from sibling chain-specific tools like bscSwapQuote and polygonSwapQuote. The additional mention of 'explicit entry or exit orders' further clarifies its intended use case.

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 clear context by specifying 'exact-input' and 'explicit entry or exit orders,' which helps the agent understand when to use this tool. However, it does not explicitly contrast it with other swap quote tools or state when not to use it, so it falls 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.

TDQS

C2.9/5.0
Disambiguation2/5

With 113 tools spanning many chains and asset classes, there is substantial overlap. For example, listPositions and getAllPositions appear to serve the same function, and there are many balance, token discovery, and collection data tools that differ mostly by chain or protocol, making misselection likely.

Naming Consistency2/5

Naming conventions are inconsistent: most tools use camelCase with a verb (baseGetBalances, ethSwapQuote), but some use underscores (nansen_defi_portfolio), others are just bare nouns (wallet, rugcheck), and there are irregularities like solanaBalances instead of solanaGetBalances, plus hederaTokensSwapQuote vs. baseSwapQuote.

Tool Count1/5

The server exposes 113 tools, far beyond the typical well-scoped set. This is an extreme mismatch with the apparent purpose of a wallet/swap server, making discovery and selection difficult for agents.

Completeness2/5

While the server offers extensive read-only data (balances, market data, NFTs, positions), it lacks core write operations: there is no actual swap execution or token transfer tool, and the referenced emblemCreateVault tool is missing. These are significant gaps that will prevent agents from completing common wallet actions.

Resources