Skip to main content
Glama

Crawler IP Verifier

Verify many addresses at once

verify_batch
Read-onlyIdempotent

Check up to 500 addresses against every mirrored operator prefix list in one call. Returns, per address, the matching prefix, the source that published it and when it was mirrored, plus a rollup by operator. Accepts {ip, claim} pairs to test a claimed identity against the ranges, and says plainly that a miss is not evidence of a fake.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
addressesYesIPv4/IPv6 addresses: an array, a whitespace or comma separated string, or objects like {"ip":"20.171.206.1","claim":"GPTBot"}. Max 500.

TDQS

A3.8/5.0
Behavior1/5

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

The description says 'a miss is not evidence of a fake', which implies open-world semantics: a non-match does not prove absence. This directly contradicts openWorldHint=false, which indicates closed-world/complete-result semantics. This is a serious annotation contradiction, so the behavioral guidance cannot be trusted.

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?

Three sentences with no filler: the scope and limit are front-loaded, the return shape is summarized, and the claim-verification caveat is stated plainly. Every sentence contributes distinct information.

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?

With no output schema, the description compensates by listing per-address return fields and the operator rollup, plus input formats, the batch cap, and the miss interpretation. It is nearly complete, but the openWorld contradiction and lack of explicit routing to a single-lookup sibling prevent a perfect score.

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 schema already covers the address formats and the 500 cap with 100% coverage. The description adds value by explaining that object entries like {"ip": ..., "claim": ...} are meant to test a claimed identity against the ranges, giving semantic meaning beyond the schema's structural example.

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 names a specific action (check), a concrete resource (addresses against mirrored operator prefix lists), and the return payload (matching prefix, source, mirror time, rollup by operator). It also distinguishes itself from siblings like lookup_prefix by emphasizing batch scope and 'in one call'.

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 clearly signals batch-oriented use through 'up to 500 addresses' and 'in one call', and it explains the {ip, claim} use case for testing claimed identities. However, it does not explicitly name an alternative such as lookup_prefix or state when a single lookup would be preferable, so it has clear context but no exclusions.

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 operation: CIDR overlap lookup, source statistics, verification-method metadata, batch address verification, and ACL export. lookup_prefix and verify_batch both touch prefix matching, but their input types and intended use cases are clearly separated.

Naming Consistency4/5

Most names follow a clear snake_case verb_noun pattern like export_ip_acl, lookup_prefix, and verify_batch. range_stats and verification_methods are noun phrases rather than verb-led names, creating a minor but readable inconsistency.

Tool Count5/5

Five tools is well-scoped for a focused IP-verification service. Each tool earns its place and covers a distinct part of the workflow without unnecessary sprawl or redundancy.

Completeness5/5

The set covers address verification, prefix overlap analysis, source freshness and sizing, verification-method lookup, and configuration export. There are no obvious missing operations that would prevent an agent from completing the core crawler-IP verification workflow.

Resources