Skip to main content
Glama

well_known_audit

Inspect a host's security.txt and robots.txt to identify missing disclosure policies and admin-only paths. Reveals security findings from standard public files.

Instructions

Fetch and parse a host's security.txt and robots.txt.

Both are standard public files. security.txt (RFC 9116) gives the vulnerability-disclosure contact, policy, and encryption key; its absence is itself a finding for a security-conscious site. robots.txt lists the paths the operator asks crawlers to skip — frequently admin/internal areas worth noting during recon.

Args: host: Hostname to inspect, e.g. "example.com". timeout: Per-request network timeout in seconds.

Returns: A dict with host, security_txt (present flag, parsed fields, structural issues, location), and robots_txt (present flag, sitemaps, disallow/allow paths, user_agents).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
hostYes
timeoutNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.13.0

TDQS

A4.6/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and mostly succeeds: it discloses that both files are fetched and parsed, that absence of security.txt is itself a finding, and that return values include present flags and parsed fields. It does not cover edge behaviors like redirects or network errors, but the core behavior is transparent.

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 purpose is front-loaded, and each paragraph earns its place by adding context, argument details, or return structure. There is no filler or repetition of schema content.

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?

For a two-parameter tool with no output schema and no annotations, the description is self-sufficient: it explains inputs, the full return dict shape, and domain-specific interpretation. An agent has enough information to call it correctly and interpret results.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Even though schema description coverage is 0%, the Args section fully defines host with an example and timeout with units ('Per-request network timeout in seconds.'). This adds real meaning beyond the schema's bare property names and types.

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 opening sentence names exact verbs and resources: 'Fetch and parse a host's security.txt and robots.txt.' This is unambiguous and distinguishes the tool from sibling recon tools focused on headers, DNS, TLS, HTTP methods, etc.

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 clear use context by explaining that security.txt is evaluated as a security finding and robots.txt reveals 'admin/internal areas worth noting during recon.' It does not explicitly name alternatives or exclusions, but the intended recon use case is clear.

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