Skip to main content
Glama

Run a single agent-readiness check

check_signal

Check if a website meets a particular agent-readiness standard (e.g., A2A agent card, llms.txt). Provides status, evidence, and steps to fix.

Instructions

Run one specific agent-readiness check against a site (e.g. 'a2a-agent-card', 'llms-txt', 'mcp-server-card', 'x402'). Use list_checks for valid check ids. Returns status, evidence, and a fix recommendation.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesWebsite URL or domain to scan, e.g. https://example.com or example.com
check_idYesCheck id from list_checks, e.g. 'a2a-agent-card'

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.2/5.0
Behavior3/5

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

No annotations provided, so description carries full burden. Discloses return values (status, evidence, fix recommendation) but does not mention permissions, rate limits, or side effects. Basic transparency adequate for a read-only check.

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 purpose, no wasted words. Efficient and clear.

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?

With 2 required params and no output schema, description explains what each param does and what the tool returns. Does not cover error handling or data limits, but sufficient for a simple check tool given sibling context.

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?

Schema has 100% description coverage; description adds cross-reference to list_checks and provides examples of valid check IDs, adding value beyond 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?

Clearly states the tool runs one specific agent-readiness check against a site, provides examples of check IDs, and distinguishes from sibling tools like list_checks and scan_site.

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?

Explicitly tells agent to use list_checks for valid check IDs, implying this tool is for a single check. Does not explicitly exclude other tools but provides clear direction.

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