Skip to main content
Glama

Xcatcher — Recent X Posts

Credit points from an x402 payment

x402_topup
DestructiveIdempotent

Top up points for the CURRENT Bearer key using x402 proof.

Inputs:

  • quote_id: returned by PAYMENT-REQUIRED (or /api/v1/x402/quote)

  • payment_signature_b64: base64(JSON) that will be passed as HTTP header PAYMENT-SIGNATURE

Side effects: credits points to the same Bearer key (no key rotation). On success returns credited_points and balance_after (shape depends on upstream).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
quote_idYesQuote ID returned by PAYMENT-REQUIRED (or /x402/quote).
payment_signature_b64YesBase64(JSON) for header PAYMENT-SIGNATURE.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.6/5.0
Behavior1/5

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

The description states 'Side effects: credits points to the same Bearer key (no key rotation).' This is a purely additive operation. However, the annotations include destructiveHint: true, which directly contradicts the description's claim. This is a serious inconsistency that undermines transparency.

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 concise and well-structured, with a clear opening statement, an inputs list, a side-effects note, and a success return note. Every sentence adds value and there is no unnecessary verbosity.

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 covers the inputs, side effects, and success response, and mentions that the return shape depends on upstream. It provides sufficient context for an agent to understand when and how to invoke the tool. However, the contradictory destructiveHint flag in the annotations leaves a completeness gap, preventing a perfect score.

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 already provides 100% coverage for both parameters, each with a description. The tool description simply restates the same information (quote_id from PAYMENT-REQUIRED, payment_signature_b64 as base64 JSON) without adding new semantics. With full schema coverage, a baseline 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 clearly states the tool's purpose: 'Top up points for the CURRENT Bearer key using x402 proof.' It uses a specific verb ('top up'), identifies the resource ('points for the current Bearer key'), and mentions the method ('x402 proof'). This distinguishes it from sibling tools like get_x402_quote and get_account_balance.

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: it says the quote_id is returned by PAYMENT-REQUIRED or /api/v1/x402/quote, implying the tool is used after obtaining a quote. It does not explicitly mention alternatives or exclusions, but the usage context is clear. A score of 4 reflects the absence of explicit when-not-to-use guidance.

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

A4.2/5.0
Disambiguation5/5

Every tool has a clearly distinct purpose, with explicit guidance for when to use accountless vs API-key variants. Even closely related tools like get_task_status and wait_for_task are differentiated by their polling behavior, so an agent can reliably select the correct one.

Naming Consistency4/5

Most tools follow a consistent verb_noun pattern in snake_case (create_crawl_task, get_task_status, list_crawl_tasks). The one exception is x402_topup, which places the protocol prefix before the verb, breaking the pattern slightly but still remaining readable.

Tool Count4/5

With 17 tools, the count is slightly above the typical 3-15 range, but the service supports two distinct payment paths (API-key and accountless x402), each requiring a parallel set of status/result tools. The count feels justified by the scope, with no obvious bloat.

Completeness5/5

The tool set covers the full lifecycle of creating, monitoring, retrieving, and managing crawl tasks, including both payment flows. It includes task creation, status polling, result preview/download, cancellation, listing, balance checks, and payment top-ups, leaving no critical gaps for the stated purpose.