Skip to main content
Glama

List data sources

list_sources
Read-onlyIdempotent

What Domduck reads and what each source means, including the eight AI crawlers whose robots.txt policy is tracked. A constant. Read it first: it is what lets a model interpret lookup_domain without guessing at field names or at which direction is better.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.6/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false. The description adds the useful 'A constant' trait, indicating it will not change, and positions it as a foundational reference. This is beyond what annotations provide, though it does not describe return format or any potential limitations.

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, front-loaded with the core purpose, then a concise explanation of its significance. Every word earns its place; no filler or repetition.

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 zero-parameter tool with no output schema, the description provides the essential context: what the sources are, that it includes AI crawlers, and its role in interpreting lookup_domain. It is complete enough for a model to decide when to call it, though it doesn't detail the output structure beyond saying 'what each source means.'

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 tool has zero parameters, so the baseline is 4 per the rubric. The description does not need to explain parameters, and the input schema is empty, so no additional semantics are required.

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 exactly what the tool returns: 'What Domduck reads and what each source means.' It is specific about the content (including the eight AI crawlers whose robots.txt policy is tracked) and clearly distinguishes it from siblings by referencing lookup_domain and the need to read this first.

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?

Explicitly says when to use it: 'Read it first' and why: 'it is what lets a model interpret lookup_domain without guessing.' This provides clear context and an alternative (lookup_domain) to not need description guessing.

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.4/5.0
Disambiguation4/5

The tools are mostly distinct: get_ai_crawler_policy focuses exclusively on crawler policy and llms.txt status, while lookup_domain provides a broader reputation snapshot that includes policy as one field. There is some overlap in that both can inform you about crawler policy, but the specialized detail of get_ai_crawler_policy (per-agent states, effective vs. written) clearly differentiates it. list_sources is a meta-tool that reduces guessing, so overall ambiguity is low.

Naming Consistency5/5

All tool names follow a clean verb_noun pattern in snake_case: get_ai_crawler_policy, list_sources, lookup_domain. The verbs (get, list, lookup) are different but all are action verbs followed by a clear object, making the set predictable and easy to navigate. No mixing of casing or inconsistent conventions.

Tool Count5/5

With only 3 tools, the server is tightly scoped to its purpose: retrieving domain reputation and AI crawler policy data. Each tool serves a distinct function, and there is no bloat. This is well within the typical 3-15 range for a focused utility and feels intentional rather than thin.

Completeness4/5

The tool surface covers the core read-only needs: a detailed policy lookup, a broad domain snapshot, and a meta-source listing. The only notable gap is that get_ai_crawler_policy reads a stored reading and does not fetch fresh robots.txt data, so agents cannot trigger an update. However, since this is a stored-data service and both get_ai_crawler_policy and lookup_domain handle missing data gracefully, the surface is reasonably complete for its stated purpose.

Resources