Skip to main content
Glama
bicibg

Apixies MCP Server

by bicibg

dns_propagation

Read-only

Check DNS propagation by querying Google, Cloudflare, Quad9, OpenDNS, and AdGuard simultaneously. Get resolver agreement, TTLs, and detect load balancing or incomplete updates.

Instructions

Check whether a DNS change has propagated: asks Google, Cloudflare, Quad9, OpenDNS and AdGuard the same question at once and reports which resolvers agree, with TTLs. Different answers can also mean load balancing, not only an unfinished change.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeNoRecord type (default: A)
domainYesDomain name to check (e.g., "github.com")
resolversNoResolvers to ask, at least two. Omit for all five.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.4.2

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, covering the safety profile. The description adds valuable behavioral context: the concrete method (five named public resolvers asked simultaneously), the reported output concept (which resolvers agree, with TTLs), and a non-obvious interpretation caveat about load balancing. It doesn't mention edge cases like resolver failures, but it goes well beyond the annotations.

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 sentences with no filler: the first states the action, scope, and output; the second adds an important interpretive caveat. Every sentence earns its place and the core purpose is front-loaded.

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?

For a read-only tool with full schema coverage, annotations covering safety, and no output schema, the description communicates the core purpose, method, and output concept. Missing details like exact output shape or default record type are minor because parameters are documented in the schema; slightly more detail about the return format would make it complete.

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% with descriptions for all three parameters, so the baseline is 3. The description maps the resolver enum values to full provider names and conveys the simultaneous-query semantics, but it does not add syntax, constraints, or meaning for domain/type beyond what the schema already provides.

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 states a specific verb and resource: it checks whether a DNS change has propagated by querying multiple resolvers simultaneously and reporting agreement with TTLs. It names the exact resolvers and adds a load-balancing caveat, making it clearly distinguishable from the sibling dns_lookup.

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

Usage Guidelines3/5

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

The use case is implied ('Check whether a DNS change has propagated'), and the multi-resolver comparison suggests when it is appropriate, but the description does not explicitly route between this tool and dns_lookup or state when not to use it. There is no when-not guidance or named alternative.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.