Skip to main content
Glama

apex-arc

arc_exit_check

If I buy this token on Arc, can I get out? For a token address or Uniswap v4 pool id on Arc: a real buy-then-sell round trip inside one eth_call through the pool hook (nothing spent) or, for ERC-20-USDC pools, both legs quoted. Returns whether the sell goes through, the round-trip cost, depth, and flags with reasons. The answer names its method. Free, one at a time (ten a minute).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
usdcNoTest size in USDC, default 1, max 1000.
queryYesToken address (0x + 40 hex) or v4 pool id (0x + 64 hex).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.1/5.0
Behavior5/5

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

With no annotations, the description carries the full burden, and it does so well. It discloses that the check is a simulation ('nothing spent'), details the return values (sell success, cost, depth, flags), and states rate limits ('ten a minute'). This is thorough behavioral disclosure for a read-only check tool.

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 well-structured: purpose first, then method, output, and constraints. Every sentence contributes necessary context, though it is slightly verbose. It earns a 4.

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 explains what the tool returns, the method used, and rate limits, making it sufficient for an agent to decide whether to call it. It does not mention error cases or prerequisites, but for a free single-token check with no output schema, this is reasonably complete. A 4 reflects minor missing edge-case details.

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% for both parameters, so the schema already documents the input formats. The description adds no extra parameter-level detail beyond restating the token/pool ID format and test size. 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 states a specific verb (check exit) and resource (token/pool on Arc), and clearly explains the simulated round-trip check. It distinguishes itself from generic exit_check by specifying 'on Arc' and from arc_exit_check_bulk by implying single-token checks. The purpose is unambiguous and actionable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clarifies the input scope (token address or v4 pool id on Arc) and mentions rate limits, but it does not explicitly mention when not to use this tool or point to alternatives like arc_exit_check_bulk for batch checks or exit_check for other chains. Usage context is clear but exclusionary guidance is missing.

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