Skip to main content
Glama

Crawler IP Verifier

Can this crawler be verified at all, and how?

verification_methods
Read-onlyIdempotent

Per crawler: whether the operator publishes IP ranges, documents reverse DNS, or publishes no verification method at all — with the exact source URL or the exact dig commands, and how fresh this mirror is. Call it before reading anything into an address that matched nothing. Reverse DNS is never run here; the command is handed back instead.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
crawlerNoCrawler slug, name, operator or UA substring. Omit for all of them.

TDQS

A4.5/5.0
Behavior5/5

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

The description discloses a key non-obvious behavior beyond the readOnlyHint annotation: reverse DNS is never run, only the command is returned. It also reveals that freshness information is included, giving the agent useful context about the data's reliability.

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?

Two dense sentences front-load the core purpose and the critical non-behavior. Every phrase contributes: what is returned, when to call it, and what it deliberately does not do.

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

Completeness5/5

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

Even without an output schema, the description tells the agent exactly what to expect: per-crawler classification, source URLs or dig commands, and freshness. Combined with the readOnly and idempotent annotations, an agent has enough to invoke and interpret the result correctly.

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 coverage is 100% for the single optional 'crawler' parameter, so the schema already documents the accepted substrings and omission behavior. The description adds only 'per crawler' framing, which doesn't materially extend parameter meaning beyond 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 clearly states the tool reports per-crawler verification methods: IP ranges, reverse DNS documentation, or none, along with source URLs or dig commands and freshness. It distinguishes itself from sibling tools by explicitly noting that reverse DNS is never executed here, clarifying its informational role.

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?

It gives an explicit trigger: 'Call it before reading anything into an address that matched nothing.' It does not name alternative tools directly, but the statement that reverse DNS commands are handed back rather than run implies when a real verification tool like verify_batch would be more appropriate.

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