SendCheck — EVM address verification (x402)
Server Details
Pre-send EVM address checks: free pre-check, $0.01 check, $0.05 deep scan. x402: payment is auth.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- pennyforgeorg/sendcheck-verify
- GitHub Stars
- 0
TDQS
Each tool has a clearly distinct purpose: validate_address is a free checksum-only check, check_address is a paid single-chain verification, and deep_scan is a paid multi-chain extended scan. There is no overlap or ambiguity between them.
Two tools follow a clear verb_noun pattern (check_address, validate_address), while deep_scan uses an adjective+noun pattern with 'deep' as a modifier. This is a minor deviation from an otherwise consistent snake_case, lowercase convention.
With 3 tools, the server is tightly scoped to EVM address verification, covering a free basic check, a standard paid check, and an advanced paid scan. Each tool earns its place and the count is well within the ideal 3-15 range.
The set covers the full verification spectrum from free checksum validation to deep cross-chain analysis, including payment handling via x402. There are no obvious dead ends or missing operations for the stated purpose of pre-send EVM address verification.
Available Tools
3 toolscheck_addressAInspect
Paid pre-send verification of one EVM address on one chain ($0.01 USDC via x402, EIP-3009 on Base): checksum, wallet-vs-contract, outgoing activity, native/USDC/USDT balances, leveled verdict with reasons and next action. TWO-PHASE: call without x_payment first to get the exact payment challenge (payTo, amount, asset), sign the USDC transfer, then call again with x_payment = the resulting X-Payment header to get the report. No account, no API key — the payment is the authentication.
| Name | Required | Description | Default |
|---|---|---|---|
| chain | No | Chain to scan (default: base) | |
| address | Yes | EVM address, 0x + 40 hex characters | |
| x_payment | No | X-Payment header value from your signed EIP-3009 transfer (second phase only) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full behavioral burden and does so thoroughly. It discloses the paid nature, the exact cost and payment method, the two-phase protocol, authentication via payment, and the nature of the returned verdict. This goes well beyond the schema and provides meaningful behavioral transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense but every sentence contributes useful information: purpose, cost/auth model, checks performed, two-phase workflow, and authentication model. It is structured logically and front-loads the core purpose before procedural details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a complex paid two-phase tool with no output schema, the description is largely complete: it explains the workflow, the payment requirement, what is checked, and what the report contains. It falls slightly short of a 5 because it does not describe exact output fields, error conditions, or behavior on invalid input, but the essential calling context is covered.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3, but the description adds real semantic value beyond the schema. It explains the two-phase significance of x_payment, clarifies that the first call must omit it, and describes the payment challenge flow that gives meaning to the parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the operation: paid pre-send verification of one EVM address on one chain, with specific checks like checksum, wallet-vs-contract, balances, and a verdict. It is specific and resource-focused, but it does not explicitly distinguish itself from sibling tools such as validate_address or deep_scan.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear operational context: when to call without x_payment first, how to obtain the payment challenge, and when to call again with the X-Payment header. It does not, however, state when to choose this tool over siblings or list exclusion conditions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
deep_scanAInspect
Paid deep scan: the full verification across ALL FIVE chains (Base, Ethereum, Arbitrum, Optimism, Polygon) incl. wrong-network detection and USDC/USDT token-mismatch flags ($0.05 USDC via x402, EIP-3009 on Base). TWO-PHASE like check_address: first call returns the payment challenge; second call with x_payment returns the report.
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | EVM address, 0x + 40 hex characters | |
| x_payment | No | X-Payment header value from your signed EIP-3009 transfer (second phase only) |
TDQS
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 well: it discloses that the tool is paid ($0.05 USDC via x402), requires EIP-3009 on Base, follows a two-phase challenge/response flow, and that the first call returns a payment challenge while the second requires x_payment and returns the report. This explains the interaction model and cost, which is crucial for an agent to invoke it correctly.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two dense sentences that front-load the key facts: paid status, scope, cost, and two-phase behavior. No filler; every clause adds a decision-relevant detail (chains, flags, payment mechanism, call sequence). The structure is clear despite the parenthetical cost detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a paid, two-phase tool with no output schema and no annotations, the description is largely complete: it covers the payment prerequisite, the call sequence, and the expected report. However, it does not describe the report's structure or fields, nor error/failure behavior if payment is not provided, which an agent might need for robust handling.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds workflow context: it explains that x_payment is only used in the second call and ties it to the payment challenge from the first call, and it specifies the payment channel (x402, EIP-3009 on Base). This clarifies the parameter's role beyond the schema's string description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb and resource: 'deep scan' for an address, with clear scope: 'full verification across ALL FIVE chains (Base, Ethereum, Arbitrum, Optimism, Polygon)' and specific detection features ('wrong-network detection and USDC/USDT token-mismatch flags'). The 'TWO-PHASE like check_address' phrase anchors it relative to siblings without confusing it with them, because the multi-chain and paid attributes distinguish it.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the use case: when the user needs comprehensive multi-chain verification and accepts the $0.05 USDC cost. It explicitly describes the two-phase protocol so an agent knows to call twice, but it does not state when to choose check_address or validate_address instead, nor when not to use this paid tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
validate_addressAInspect
FREE pre-send check of an EVM address: EIP-55 checksum verification (catches typos, dropped characters, clipboard malware) + a note that a passing checksum is a spell-check, not payee verification. Run this before paying for check_address.
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | EVM address, 0x + 40 hex characters (any casing) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden and does well: it discloses that the operation is free and read-only, specifies exactly what is verified (EIP-55 checksum), lists failure modes it catches (typos, dropped characters, clipboard malware), and openly warns about its limitation. It does not mention return values, but that is a minor gap for a check-like tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no filler. The first sentence front-loads the purpose, cost, and key value; the second adds the critical limitation and usage ordering. Every clause carries useful information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter tool with no output schema, the description covers what it does, what it catches, its limitation, and when to use it in the workflow. The only omission is the exact return format, which is not essential for such a simple validation tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already fully documents the address format (0x + 40 hex characters, any casing). The description adds meaning by explaining the EIP-55 checksum verification behavior, which tells the agent what will be done with the address beyond its format. It also clarifies that casing is relevant to the checksum check.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific verb and resource: a free pre-send EIP-55 checksum check of an EVM address. It explicitly positions itself relative to check_address ('Run this before paying for check_address'), distinguishing it from that sibling, and its 'pre-send check' framing separates it from deep_scan's implied deeper analysis.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly instructs when to use the tool: run before paying for check_address. It also provides a when-not-to-rely-on-it statement by noting that a passing checksum is not payee verification. However, it gives no guidance about deep_scan, leaving some ambiguity about when to choose this over that sibling.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
3 tool updates
- First observed
check_address - First observed
deep_scan - First observed
validate_address
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity – fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge – works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge – works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Pre-transaction token risk checks for autonomous agents on six chains. Read-only; paid via x402.
Verify x402 payment endpoints before an AI agent pays: scam scan, on-chain checks, trust scores.
Live x402 endpoint trust/diligence check before you pay it. $0.02/call via x402.
Crypto rug/scam-risk scans + wallet snapshots (EVM + Solana), paid per call via x402.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceProvides counterparty risk checks for any EVM address, returning malicious-history flags, tiered risk scoring, and plain-language summaries via x402 payment.-

WalletTriage MCPofficial
AlicenseAqualityCmaintenanceReal-time exploit-exposure check for EVM wallets with x402 USDC payments, no signup needed.251MIT- AlicenseNot gradedqualityBmaintenancePay-per-call checks an AI agent runs before it moves money: token safety verdicts and wallet risk profiles on Base, on-chain payment verification, IBAN/VAT/BIC/LEI/ISIN validation, and live TLS and email-spoofing posture for a domain. Paid in USDC over x402 with no API key or account; the free payment_info tool explains the pricing.MIT
- AlicenseAqualityBmaintenanceBefore an AI agent pays an x402 endpoint, checks whether it's safe to pay: liveness, scam/anomaly scan (payTo hijack, bait-and-switch, honeypot), and on-chain receiver verification. ~70% of x402 endpoints are dead or scams.3MIT