Skip to main content
Glama

check_address

Read-only

Check whether a crypto address is safe to transact with. Screens OFAC sanctions + community scam lists and flags contract-vs-wallet. Returns verdict (safe/caution/avoid), 0-100 risk score, reasons, and sources.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
chainNobase | ethereum (default: base)
addressYesEVM 0x… address to check

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, and the description adds meaningful behavioral context: it screens specific list types, flags contract-vs-wallet, and returns a structured verdict with risk score, reasons, and sources. This goes beyond the annotations to clarify what the tool does and what output the agent can expect.

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 three sentences, front-loaded with the main purpose, and every sentence adds value: what it does, what it screens, and what it returns. No redundant or filler content.

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 tool has only 2 parameters and no output schema, so the description's inclusion of the return format (verdict, risk score, reasons, sources) is helpful. Minor gap: the description says 'crypto address' while the schema specifies 'EVM 0x…', which could cause slight ambiguity for non-EVM addresses, but overall the description is sufficient for a read-only check 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%, so both parameters (chain and address) are already documented in the schema. The description does not add extra detail about the parameters themselves; it focuses on high-level behavior. Baseline 3 is appropriate given full schema coverage.

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 has a specific verb ('Check'), clear resource ('crypto address'), and a clear goal ('safe to transact with'). It distinguishes from sibling check_url by focusing on crypto addresses rather than URLs.

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 for when to use the tool: checking crypto address safety. It mentions the screening criteria (OFAC sanctions, scam lists, contract-vs-wallet) but does not explicitly state when NOT to use it or how it compares to check_url.

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

Each tool targets a distinct input type: crypto address vs. URL/domain. There is no overlap in purpose, so an agent can easily select the correct tool based on what it needs to check.

Naming Consistency5/5

Both tools follow the same check_<object> pattern, making the naming predictable and consistent. There are no deviations or mixed conventions.

Tool Count3/5

With only 2 tools, the server feels thin, though the scope is narrow and both tools are directly relevant. The count is borderline but not unreasonable for a specialized security checking utility.

Completeness4/5

The server covers the two core security checks expected from its purpose (address and URL). There are no obvious dead ends, though a fuller security suite might add checks for transactions or other asset types.

Resources