Skip to main content
Glama

dex_tx_approve_preview

Destructive

Build ERC20/SPL approve or revoke tx (does not broadcast). Sign with dex_wallet_sign_transaction after user confirmation.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
chainNoChain name (default ETH). Based on backend chain configuration.
nonceNoEVM: transaction nonce. Omit to auto-fetch current nonce.
ownerYesOwner address (your wallet address)
actionNoAction type: 'approve' (default) or 'revoke' (revoke all approvals, Solana only)
amountYesApproval amount (human-readable). Set to '0' to revoke approval (EVM), set to 'unlimited' or 'max' for maximum allowance
spenderYesSpender address (EVM: spender contract address; Solana: delegate account address)
mcp_tokenNoMCP session token obtained from login (dex_auth_google_login_poll or dex_auth_gate_login_poll). MUST be provided in every call to this tool after login; omitting it will result in 403
token_mintNoSolana: SPL Token mint address (required for Solana)
token_contractNoEVM: ERC20 contract address (required for EVM)
token_decimalsYesToken decimals (e.g. 6, 18, 9)
max_fee_per_gasNoEVM: override max fee per gas (wei)
max_priority_fee_per_gasNoEVM: override max priority fee per gas (wei)
priority_fee_micro_lamportsNoSolana: priority fee (micro-lamports per compute unit)

TDQS

A4.2/5.0
Behavior4/5

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

The description discloses a key non-obvious behavior: the transaction is not broadcast, which is critical safety information given the destructiveHint annotation (revoke is destructive when signed). It also clarifies the next step (signing) which beyond the annotations provides context that this is an intermediate step, not a final on-chain action.

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?

Two sentences, front-loaded with the primary purpose, followed by a workflow hint. No filler or redundancy. Every word contributes to understanding the tool's role.

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?

Despite having 13 parameters and no output schema, the description captures the essential workflow: build, sign, and confirm. It does not explain every parameter (though the schema does), but it gives the tool's place in the transaction lifecycle. The lack of output schema is not an issue since the next step is signing, which is mentioned.

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?

The input schema has 100% coverage with descriptions for all 13 parameters. The description itself does not elaborate on parameter semantics beyond stating the tool builds approve/revoke transactions. Since the schema already covers parameter meanings, the description adds minimal value here, matching the baseline.

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 states a specific verb ('Build'), a specific resource ('ERC20/SPL approve or revoke tx'), and a critical scope qualifier ('does not broadcast'). This clearly distinguishes it from sibling tools like dex_tx_send_raw_transaction or dex_tx_swap_sign_approve by focusing on the construction/preview step.

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 provides a clear usage context: build the tx with this tool, then sign with dex_wallet_sign_transaction after user confirmation. This gives the agent a workflow sequence. It does not explicitly name alternatives or exclusions, but the 'does not broadcast' statement implies it is not for sending.

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.4/5.0
Disambiguation4/5

Most tools have clear, distinct roles (auth flows, market data, swap stages, wallet operations). A few ambiguities exist, such as dex_tx_get_sol_unsigned vs dex_tx_transfer_preview and dex_agentic_report's name not matching its description, but overall agents can reliably select the correct tool.

Naming Consistency3/5

Naming is inconsistent: while all tools share the dex_ prefix and category segments, some use get_*, others list_*, and several are noun phrases (dex_chain_config, dex_tx_gas, dex_tx_detail). Auth tool ordering also varies (gate_login_start vs login_gate_wallet), making the pattern less predictable.

Tool Count2/5

With 47 tools, the server is over-scoped and burdensome for agents to navigate. Even though the broad DEX domain justifies many features, this exceeds the 25+ threshold for 'too many' and could benefit from consolidation into fewer, higher-level tools.

Completeness4/5

The tool set comprehensively covers DEX workflows: auth, market data, token info, wallet balances, transfer/swap pipeline, cross-chain bridge, and x402 payments. Minor gaps include lack of explicit swap cancellation or withdrawal execution, but these are secondary to the core functionality.