Skip to main content
Glama

Crawler IP Verifier

Prefix arithmetic against published ranges

lookup_prefix
Read-onlyIdempotent

Give a CIDR and get every published operator prefix that contains it, is contained by it, or partially overlaps it — the check for 'does my network collide with a crawler range' and for auditing an allowlist somebody handed you. Give an operator or source slug instead and get everything that source publishes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cidrNoA CIDR or a bare address, e.g. 20.171.206.0/24 or 2600:1f00::/32.
operatorNoA source slug, e.g. openai-gptbot, google-googlebot.

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, so safety is covered. The description adds behavioral value by specifying the full match semantics — containing ranges, contained ranges, and partial overlaps — as well as the alternate lookup by operator/source slug, which goes beyond what annotations alone provide.

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 two sentences with no filler. The core operation is stated first, followed by concrete use cases and the alternative input mode. Every clause contributes useful 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?

The description covers both parameters, the core matching behavior, and practical use cases. It does leave minor gaps: both parameters are optional in the schema, and the description does not state what happens if neither or both are provided, nor does it describe the exact return structure. However, for a read-only lookup with simple inputs, this is nearly complete.

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?

Schema coverage is 100% and each parameter has a descriptive schema entry, so the baseline is 3. The description adds further meaning by explaining how the cidr parameter is interpreted: every published operator prefix that contains, is contained by, or partially overlaps it. It also clarifies that the operator parameter returns everything published by that source, which is not stated in the schema.

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 verb and resource: 'get every published operator prefix' that contains, is contained by, or overlaps a CIDR. It also clearly distinguishes this from sibling tools by framing it around crawler-range collision checks and allowlist auditing, so an agent can tell it apart from range_stats or export_ip_acl.

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 concrete when-to-use context: 'the check for does my network collide with a crawler range' and 'auditing an allowlist somebody handed you.' It also explains the alternative operator/slug input mode, but it does not explicitly name sibling alternatives or state when not to use this tool.

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