Agent Ready
Server Details
Scan any URL for AI agent readability — Vercel Spec, llmstxt.org, and agent-protocol manifests.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mlava/agent-ready-mcp
- GitHub Stars
- 1
- Server Listing
- Agent Ready
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.3/5 across 3 of 3 tools scored.
Each tool has a clear, distinct purpose: 'ask' for searching content, 'scan_site' for initiating scans, and 'get_scan' for retrieving results. There is no overlap in functionality.
All tool names follow a consistent lowercase underscore pattern with a verb_noun structure (ask, get_scan, scan_site), making them predictable and easy to understand.
Three tools are perfectly scoped for this server's purpose: one for knowledge search, two for scanning operations. Each tool serves a necessary function without redundancy.
Core workflows are covered: scanning, retrieval, and knowledge search. Missing are listing scans or managing content, but the server is focused on execution and search, so gaps are minor.
Available Tools
3 toolsaskAsk Agent Ready in natural languageARead-onlyIdempotentInspect
Natural-language search (NLWeb /ask) over Agent Ready's own content — scoring methodology, the check registry, the specs it validates, and the content library (explainers, comparisons, how-to guides, glossary). Returns Schema.org-typed result objects. Optional itemType narrows to a corpus type; mode 'summarize' adds an extractive summary.
| Name | Required | Description | Default |
|---|---|---|---|
| q | Yes | Natural-language question to search Agent Ready's docs, scoring methodology, check registry, and content library (explainers, comparisons, how-to guides, glossary). | |
| mode | No | "list" (default) returns matching items; "summarize" returns a synthesized answer. | |
| itemType | No | Restrict results to a content type: methodology, checks, specs, llms-txt, check, page (explainers/guides/glossary), or any (default: all types). |
Output Schema
| Name | Required | Description |
|---|---|---|
| message | No | Extractive summary when mode is 'summarize'. |
| results | Yes | Matching result items (Schema.org-typed). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, openWorld, idempotent, and non-destructive behavior, so the description need not repeat that. The description adds useful behavioral context: results are Schema.org-typed, mode 'summarize' adds an extractive summary, and itemType narrows the corpus. No contradictions with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, consisting of three sentences that front-load the core purpose, then add return type and optional parameter behavior. Every sentence earns its place, with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With an output schema present, the description does not need to detail return values. It fully covers what content is searched, the optional narrowing and summarization modes, and the result type. It is complete for a search tool, though it omits any mention of pagination or result limits, which is slightly expected for a search operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with each parameter well-described, so the baseline is 3. The description adds slight extra meaning by explaining itemType narrows to a corpus type and mode 'summarize' adds a summary, but these largely echo the schema and no new syntax or examples are provided.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool performs natural-language search over Agent Ready's own content, listing specific corpora (methodology, check registry, specs, content library). It also mentions the return type (Schema.org-typed objects), making the purpose specific and distinct from sibling scan tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context on what content is searched and that mode/itemType can adjust the query, implying when to use it. However, it does not explicitly mention when not to use it or provide alternatives like the sibling tools get_scan and scan_site.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_scanGet a previous scan by idARead-onlyIdempotentInspect
Fetches a completed or in-progress scan by its id. Only scans owned by the authenticated API key's user are returned.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The scan id returned by scan_site (also the share token in a /scan/<id> URL). |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | The scan id. |
| status | Yes | Scan status: running, completed, or failed. |
| pollUrl | No | Poll URL while the scan is still running. |
| rootUrl | No | The scanned site URL. |
| shareUrl | No | Path to the shareable report (/scan/<id>). |
| vercelScore | No | Vercel agent-readability score (0–100); null while running. |
| llmstxtScore | No | llms.txt score (0–100). |
| pagesScanned | No | Number of pages scanned. |
| vercelRating | No | Rating band for the Vercel score. |
| pagesDiscovered | No | Number of pages discovered. |
| protocolResults | No | Agent-protocol checks (C-series) that ran — only for endpoints the site actually exposes. |
| accessibilityScore | No | Accessibility / layout-stability sub-score (0–100) over the homepage WCAG checks; null when none ran. Separate from the Vercel score. |
| accessibilityChecks | No | Accessibility / layout-stability checks (A-series) run over the homepage. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, idempotent, and non-destructive hints. The description adds valuable behavioral context beyond annotations: it specifies that scans can be 'completed or in-progress' and that ownership is restricted to the authenticated user. This provides meaningful transparency without contradicting any annotation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, directly addresses the tool's function and a key security constraint, and avoids any filler or redundant phrasing. Every word contributes meaning.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple fetch-by-id tool, the description is complete: it states what is fetched, the allowed states, and the ownership restriction. The presence of an output schema means return format doesn't need to be described. The tool is fully specified given its simplicity and rich annotations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides 100% coverage for the single 'id' parameter, including a detailed description linking it to scan_site and the share token URL. The tool description itself does not add additional parameter semantics, so the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('fetches') and a clear resource ('scan by its id'), making the tool's purpose immediately obvious. It also adds an ownership scope ('Only scans owned by the authenticated API key's user are returned'), which further distinguishes it from siblings like scan_site.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage: you have a scan id and want the scan data. It does not explicitly state when to use this tool over alternatives like scan_site or ask, nor does it provide exclusions. The context is clear but relies on inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
scan_siteScan a site for AI agent readabilityARead-onlyIdempotentInspect
Runs the agent-ready.dev scanner against a URL and returns structured results: Vercel score, llmstxt.org score, and per-check findings with remediation hints. Scans may take up to ~60s; for larger scans the tool returns a scan id and asks you to poll with get_scan.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Full URL of the site to scan, e.g. https://example.com. Must be a public http(s) address. | |
| pageLimit | No | Maximum number of pages to crawl. Defaults to your tier's per-scan page limit when omitted. |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | The scan id. |
| status | Yes | Scan status: running, completed, or failed. |
| pollUrl | No | Poll URL while the scan is still running. |
| rootUrl | No | The scanned site URL. |
| shareUrl | No | Path to the shareable report (/scan/<id>). |
| vercelScore | No | Vercel agent-readability score (0–100); null while running. |
| llmstxtScore | No | llms.txt score (0–100). |
| pagesScanned | No | Number of pages scanned. |
| vercelRating | No | Rating band for the Vercel score. |
| pagesDiscovered | No | Number of pages discovered. |
| protocolResults | No | Agent-protocol checks (C-series) that ran — only for endpoints the site actually exposes. |
| accessibilityScore | No | Accessibility / layout-stability sub-score (0–100) over the homepage WCAG checks; null when none ran. Separate from the Vercel score. |
| accessibilityChecks | No | Accessibility / layout-stability checks (A-series) run over the homepage. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, idempotent, and non-destructive. The description adds valuable behavioral context: scans may take ~60 seconds and larger scans switch to an async ID-based flow requiring get_scan polling. It also discloses the return structure (scores and per-check findings) beyond what annotations provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences: the first states the action and expected outputs, the second covers latency and the asymmetric fallback. Every clause adds information, with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the rich annotations, full schema coverage, and existence of an output schema, the description completes the picture by explaining the tool's purpose, output composition, latency, and the polling behavior for long scans. There are no obvious gaps in what an agent needs to know to invoke and use this tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already documents both parameters (url and pageLimit) with descriptions, achieving 100% coverage. The tool description adds no additional parameter-specific meaning beyond what the schema provides. Baseline 3 is appropriate because the schema carries the full burden.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names the specific resource (agent-ready.dev scanner), lists the concrete outputs (Vercel score, llmstxt.org score, per-check findings with remediation hints), and implicitly differentiates from sibling get_scan by describing the polling flow for larger scans. This is a specific verb+resource statement with clear scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly tells the agent that for larger scans the tool returns a scan ID and that polling with get_scan is the follow-up, which is a clear usage directive. It does not explicitly say when not to use this tool versus ask, but the purpose is clearly scoped to scanning, so the guidance is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityBmaintenanceEnables AI agents to read clean Markdown from any URL and assess source quality with AI-readability scores.Last updated701MIT
- Alicense-qualityAmaintenanceEnables AI agents to scan any website for agent-readiness and generate the necessary artifacts (llms.txt, WebMCP scaffold, structured data) to make it agent-ready.Last updated13MIT
- AlicenseAqualityAmaintenanceEnables AI agents to check whether a public website is crawlable, understandable, and ready for AI search workflows through local-only audits of robots.txt, sitemaps, metadata, and llms.txt.Last updated3721MIT

ASO Score MCPofficial
AlicenseAqualityBmaintenanceScans websites to evaluate agent-readiness and produce an ASO Score Report across 34 signals, helping improve discoverability, trust, and interoperability for AI agents.Last updated522MIT
Your Connectors
Sign in to create a connector for this server.