Skip to main content
Glama

Validate an x402 endpoint now

check_x402_endpoint

Send an unpaid request and validate the endpoint's HTTP 402 challenge, accepted networks, scheme, amount, and recipient. The target probe does not attach payment. Costs $0.001 USDC per call via x402 (Base) — no API key, no account. Calling without payment returns 402 with the payment requirements. Free alternative: GET https://longwatch.dev/demo for a free NVDA Form 4 sample, or POST https://longwatch.dev/try for a 24h watch — no wallet needed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes
bodyNo
methodNo
expected_schemeNo
expected_networkNo
expected_amount_atomicNo

TDQS

A3.8/5.0
Behavior4/5

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

With no annotations supplied, the description carries the burden of behavior disclosure. It reveals that the call is unpaid, costs $0.001 USDC via x402 on Base, requires no API key or account, and that an unpaid call returns 402 with payment requirements. It does not fully describe output or failure behavior, but the cost and no-payment behavior are well disclosed.

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 main purpose is front-loaded, followed by cost and behavioral details, and then free alternatives. The free-alternative sentence is slightly promotional but useful for routing users away from unnecessary paid calls. Each sentence adds some actionable information, so the length is justified.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has six parameters, a nested body object, and no output schema, the description gives useful cost and behavioral context but omits how the validation result is returned and how each parameter should be populated. The core use case is clear, but an agent would still have to infer some parameter and response semantics.

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 0%, so the description must compensate, but it only partially does. It mentions validating scheme, amount, network, and recipient, which maps to expected_scheme, expected_amount_atomic, and expected_network, but it does not explain url, body, method, or what 'atomic' means for the amount. Parameter names are mostly self-explanatory, but the description adds only limited semantic value.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's action: send an unpaid request and validate the endpoint's HTTP 402 challenge, accepted networks, scheme, amount, and recipient. It is specific about the resource and one-time validation intent, but it does not explicitly compare itself to the closely related watch_x402_endpoint sibling, so it stops short of a full 5.

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 for when to use the tool—when you need to validate an x402 endpoint—and also gives explicit free alternatives (the longwatch.dev demo and trial endpoints) to avoid paying. It does not explicitly contrast with watch_x402_endpoint or other sibling tools, so usage guidance is strong but not exhaustive.

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

A3.7/5.0
Disambiguation4/5

Most tools are clearly separated into immediate check_* and persistent watch_* counterparts across distinct source types, plus lifecycle tools for creating, polling, and deleting watches. The generic check_now and create_watch overlap somewhat with the specialized check_*/watch_* tools, but the descriptions clarify session vs. persistent usage.

Naming Consistency4/5

The check_<source>/watch_<source> pairing is consistent across all six monitored source types, and lifecycle tools use predictable verb-based names like create_watch, delete_watch, poll_alerts, and try_watch. Minor deviations like check_now and create_watch rather than watch_create break the pattern slightly, but the overall convention remains legible.

Tool Count4/5

Eighteen tools is on the heavier side, but the count is justified by six source types each having both a check and watch mode, plus lifecycle operations. The generic check_now and create_watch add redundancy with the specialized tools, making the set slightly larger than strictly necessary.

Completeness3/5

The server covers immediate checks, persistent watches, trial watches, polling, and deletion, so the main monitoring workflow is present. However, there is no update_watch, list_watches, or get_watch status tool, so agents cannot modify or enumerate existing watches and must delete/recreate instead.

Resources