Skip to main content
Glama

Server Details

Plain-English decode of any Base mainnet transaction: strict JSON, risk flags, no LLM.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
0200project/base-tx-explain
GitHub Stars
0
Server Listing
base-tx-explain

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.6/5 across 2 of 2 tools scored.

Server CoherenceA
Disambiguation5/5

The two tools serve completely distinct purposes: one is a purchase/payment mechanism for obtaining access, while the other is the core transaction explanation functionality. There is no overlap or ambiguity between them.

Naming Consistency5/5

Both tools use a clear verb_noun pattern: buy_pass (buy + pass) and explain_transaction (explain + transaction). The naming is consistent and predictable, reflecting their distinct actions.

Tool Count3/5

The server has only 2 tools, which is very few but appropriate for a focused transactional service. The count feels minimal, but both tools are essential: one for access/payment and one for the core functionality. It edges toward the lower boundary of acceptable scope.

Completeness3/5

The core transaction explanation is covered well with detailed output, but there are gaps: the server only supports Base mainnet and a single transaction hash input. Missing features could include batch explanations, support for multiple networks, or a way to check pass status/expiry without purchasing. For a minimal service, the surface is nearly complete, but there are notable limitations.

Available Tools

2 tools
buy_passBuy a 30-day passAInspect

Buy a 30-day pass for $9 in USDC on Base via x402: up to 10,000 explain_transaction calls with no per-call payment. Returns a bearer pass token; attach it at _meta["btx/pass"] on MCP calls or as the X-BTX-Pass header on POST /explain. No account; the token is the only proof of purchase. Renew by buying a new pass after expiry.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior5/5

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

With no annotations, the description fully discloses: the cost, payment method (USDC on Base), the limit (10,000 calls), the return token, how to attach it, the lack of an account requirement, and renewal. This is exceptionally transparent for a tool with no 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 a single dense sentence broken by semicolons, but every piece of information is useful and directly supports usage. It could be slightly more structured, but it's not verbose and is front-loaded with the core purpose.

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 the tool has no parameters, no output schema, and no annotations, the description covers everything needed: what it does, the cost, the token usage, and renewal. It's complete for a simple purchase 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?

The tool has zero parameters, so the schema provides no semantics. The description adds meaningful context about what the pass does, which compensates for the empty schema. Baseline of 4 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 clearly states the tool buys a 30-day pass for $9 in USDC on Base, with the specific benefit of up to 10,000 explain_transaction calls without per-call payment. It distinguishes itself from the sibling explain_transaction by focusing on the purchase action and the pass's usage.

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 explains when to use it (to access calls without per-call fees) and provides explicit instructions for attaching the token via _meta or header. It doesn't explicitly say when not to use it, but implies that it's for heavy usage, and mentions renewal after expiry, covering the lifecycle.

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

explain_transactionExplain Base transactionAInspect

Explain a Base-mainnet transaction in plain English. Input: a transaction hash. Returns strict JSON: summary (1-3 sentences), action_type (swap, erc20_transfer, nft_mint, bridge_out, approval_for_all, ...), assets_moved[] (token, amount, from, to), counterparties[] (labeled where known: routers, bridges, marketplaces), risk_flags[] (unverified_contract, unlimited_approval, approval_for_all, known_drainer, first_time_counterparty, nonstandard_token_symbol, impersonated_token, transaction_reverted), checks, gas_paid_usd, timestamp, basescan_url. Risk checks fail open, so read checks before drawing any conclusion from an empty risk_flags: it reports whether each check ran (ok / partial / unavailable / inconclusive / not_applicable), and no flags alongside a non-ok status means not checked, not clean. Deterministic onchain decode - no LLM in the response path. Base mainnet (chain id 8453) only.

ParametersJSON Schema
NameRequiredDescriptionDefault
tx_hashYesThe Base mainnet transaction hash to explain (0x + 64 hex characters).
Behavior5/5

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

With no annotations available, the description carries the full burden and excels: it discloses deterministic onchain decoding with no LLM, explains that risk checks fail open and that an empty risk_flags with non-ok checks means 'not checked, not clean', and details the exact response format. This prevents serious misinterpretation.

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 front-loaded with the core purpose and then presents the input, output shape, and critical caveats in a logical order. Although lengthy, every sentence carries necessary information, especially given the lack of an output schema.

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?

The tool has no output schema and no annotations, but the description compensates fully by enumerating the strict JSON fields, explaining the fail-open risk-check semantics, specifying the network, and confirming deterministic behavior. This is more than sufficient for an agent to correctly invoke and interpret the 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 description coverage is 100%, and the schema already documents tx_hash as a Base mainnet transaction hash with the 0x + 64 hex format. The description adds only 'Input: a transaction hash', which does not materially extend the schema, so the baseline score of 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 uses a specific verb and resource: 'Explain a Base-mainnet transaction in plain English' and immediately distinguishes the tool's scope from buy_pass by emphasizing Base mainnet and transaction-level decoding. It clearly specifies the input (transaction hash) and the purpose, making the tool's role unambiguous.

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 clear context: use this for Base-mainnet transaction hashes and receive a structured plain-English explanation. It also sets an explicit constraint ('Base mainnet (chain id 8453) only'), but it does not name alternatives or state when not to use this tool relative to sibling tools.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.