Skip to main content
Glama

TunnelMind Data API

sigil_verify_ads_txt_batch

Runs up to 100 ads.txt verifications in a single call — the endpoint an ad-buying agent uses for pre-bid checks across a whole campaign's supply. Each item is the same shape as sigil_verify_ads_txt. Per-item validation failures are reported inline; the batch never fails as a whole. Publisher records are fetched once per unique domain.

Use this tool when:

  • You are evaluating many supply paths at once (campaign setup, SPO sweep).

  • You want one round-trip instead of N calls to sigil_verify_ads_txt.

Inputs:

  • items (body, required): Array of 1–100 verification requests, each { publisher_domain, exchange_domain, seller_id, seller_type? }.

  • resolve_chain (body, optional): Applies to every item — when true, a matched RESELLER entry is cross-checked against the exchange's sellers.json.

Returns:

  • count: number of result entries (matches items length, in order).

  • verified_count: how many resolved to verified: true.

  • results: array aligned to items. Each entry is either a verification result with ok: true and input_index, or { ok: false, input_index, error, message } for an invalid item.

Cost:

  • Counts as one request against the daily rate limit.

Latency:

  • Typical: <150ms. With resolve_chain: true, add one sellers.json fetch per unique exchange (edge-cached 12h after the first fetch).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
itemsYes1–100 verification requests
resolve_chainNoResolve reseller chains for every RESELLER item

TDQS

A4.9/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It reveals several critical traits: the batch never fails as a whole (per-item failures are inline), publisher records are fetched once per unique domain, and it includes cost and latency details. This goes far beyond minimal requirements and gives an agent a realistic expectation of behavior.

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 well-organized with clear sections (Use this tool when, Inputs, Returns, Cost, Latency) and uses bullet lists for scannability. Every sentence earns its place, providing directly actionable information without fluff. The structure front-loads the core purpose and use case, then details operational behavior.

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?

There is no output schema, so the description must explain return values, which it does thoroughly (count, verified_count, results with ok/error details). It also covers cost, latency, and edge-case behavior. For a batch tool with this complexity, the description is comprehensive and leaves minimal gaps.

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 both parameters at 100%, so the baseline is 3. The description adds meaningful value by showing the exact shape of `items` (including the optional `seller_type?`), explaining that `resolve_chain` applies globally and cross-checks against sellers.json, and detailing the return object. This enriches the schema without being redundant.

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 opens with a specific verb+resource+scope: 'Runs up to 100 ads.txt verifications in a single call.' It explicitly names the batch behavior and distinguishes itself from the sibling `sigil_verify_ads_txt` by framing this as the multi-item counterpart. This makes the tool's purpose unambiguous and distinct.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The 'Use this tool when' section provides explicit conditions: evaluating many supply paths at once (campaign setup, SPO sweep) and wanting one round-trip instead of N calls to `sigil_verify_ads_txt`. This clearly tells an agent when to choose this tool over the singular variant, fulfilling the when/alternatives guidance.

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

B3.3/5.0
Disambiguation2/5

Many tools overlap in purpose, such as cross_lens_verify, cross_lens_lookup, profile_entity, and preflight_should_i_act, which all return node verdicts with subtle differences. Sigil verification tools and receipt-related tools also have similar names and require deep reading to distinguish.

Naming Consistency3/5

The tool names are mostly readable, but the pattern is mixed: some use verb_noun (get_domain, create_subscription) while others use domain prefixes (sigil_*, ghostroute_*, intel_*). Within each domain, naming is consistent, but the overall style lacks uniformity.

Tool Count1/5

With 90 tools, this server is extremely overloaded. Even for a multi-purpose data API, the sheer number overwhelms and makes navigation difficult, far exceeding the typical well-scoped MCP server. The count is an extreme mismatch for the apparent scope.

Completeness4/5

The tool surface is very comprehensive, covering tracker lookup, cross-lens verification, receipts, compliance, subscriptions, tasks, intel probes, and more. Minor gaps exist, such as no batch cross-lens verification, but core workflows are well covered.

Resources