agentready
Server Details
Scan any public site for AI-agent visibility; get scored findings, a machine-readable fix pack, and
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
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 3.7/5 across 3 of 3 tools scored.
The three tools have distinct names and descriptions, but scan_url and get_fix_pack both perform scans and could be confused. However, get_fix_pack explicitly returns a Fix Pack with prioritized fixes, while scan_url returns a score and findings, so they are mostly differentiable.
All tool names follow a consistent verb_noun pattern with underscores: get_fix_pack, scan_url, verify_fixes. The verbs are distinct and the nouns clearly indicate the resource, making the naming predictable.
With three tools, the server is on the smaller side but still covers the core workflow of scanning, obtaining a fix pack, and verifying fixes. The count feels slightly thin but is reasonable for a focused service.
The tool set covers scanning, fix generation, and verification, but it lacks a tool to apply or commit fixes, and there is no tool for managing candidate URLs or repository paths mentioned in descriptions. This leaves some gaps in the full lifecycle.
Available Tools
3 toolsget_fix_packGet machine-readable fixesAInspect
Scan a public URL and return Fix Pack v2: prioritized fixes with stable ids, observed evidence, candidate target URLs and repository paths, review gates, and fix-specific acceptance assertions for a coding agent.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Public site URL (https://example.com) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Since no annotations are provided, the description carries full burden. It mentions scanning a public URL and returning a structured output, but does not disclose potential behaviors such as rate limits, caching, or side effects. The lack of detail is mitigated by the read-only nature implied by 'scan'.
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 a single sentence that is both concise and informative. It front-loads the action ('Scan a public URL') and then details the output, making it easy to parse. No unnecessary words.
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 tool has only one parameter and no output schema, the description adequately explains the purpose and return value. It is complete enough for an agent to understand what it does, though it could mention potential failure modes or edge cases.
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 description coverage is 100% and the parameter description in the schema is identical to the tool description's mention of 'Public site URL'. The description adds no additional meaning beyond the schema, so baseline score 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 clearly states the verb 'Scan a public URL' and the resource 'Fix Pack v2', listing specific outputs like prioritized fixes, stable ids, evidence, etc. It effectively distinguishes from siblings by specifying a structured fix pack with review gates and acceptance assertions.
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 that the tool is used to get prioritized fixes from a public URL, but does not explicitly state when to use this tool versus siblings (scan_url, verify_fixes). No when-not-to-use or alternative guidance is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
scan_urlScan a site for agent readinessAInspect
Run an AgentReady scan of a public URL. Returns the 0-100 score, per-phase findings, top priorities, and the Fix Pack v2 implementation contract. Repository paths remain candidate targets until a connected-repository resolver proves them.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Public site URL (https://example.com) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must disclose behavior. It mentions the scan is non-destructive and returns a score plus findings, and includes a note about repository paths being candidate targets until proved. However, it doesn't cover authentication, idempotency, or potential side effects.
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, with the first sentence stating the action and main outputs. No extraneous information; each sentence adds value. The structure is front-loaded and efficient.
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 one-parameter tool with no output schema, the description is largely complete: it explains the purpose, return values, and a behavioral nuance. It could mention idempotency or rate limits, but the provided context is sufficient for an agent to use the 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 schema has 100% coverage for the single parameter 'url', which is described as 'Public site URL (https://example.com)'. The description adds no additional semantics beyond restating that it's a public URL, so baseline 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 clearly states the action 'Run an AgentReady scan' and the resource 'a public URL'. It lists specific return values (score, findings, top priorities, Fix Pack contract) and differentiates from siblings (get_fix_pack, verify_fixes).
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?
Usage context is implied by the purpose (scanning a site for agent readiness) but there is no explicit guidance on when to use this tool vs alternatives like get_fix_pack or verify_fixes, nor when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
verify_fixesVerify fixes landedAInspect
Re-scan a public URL and evaluate fix-specific stable ids from a previous v1 or v2 Fix Pack. A fix closes when its finding id is absent; score delta is secondary evidence only.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Public site URL (https://example.com) | |
| previous_fix_pack | Yes | The Fix Pack returned earlier by get_fix_pack (or an object with {score, fixes:[{id}]}). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden. It explains the core behavior: re-scanning, evaluating stable IDs, and closure logic (finding id absent vs score delta). However, it does not disclose side effects, required permissions, rate limits, or error conditions—details important for tool invocation.
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?
Two sentences, no redundancy. The first sentence states the verb and resource, the second clarifies key nuance. Every word earns its place, and the structure is front-loaded with the primary action.
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?
The tool is moderately complex (re-scan, evaluation, fix closure logic) and has no output schema, yet the description does not explain the return format, structure, or next steps. The agent lacks information on what to expect after invocation, making the description incomplete.
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%, so baseline is 3. The description adds some context: 'previous v1 or v2 Fix Pack' and 'stable ids', which provides meaning beyond the schema. However, it does not elaborate on param syntax or constraints, making the addition modest.
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 action: 'Re-scan a public URL and evaluate fix-specific stable ids from a previous v1 or v2 Fix Pack.' It also explains what constitutes a fix close, which differentiates it from siblings like scan_url (general scan) and get_fix_pack (retrieve pack).
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 after obtaining a previous Fix Pack, but does not explicitly state when to prefer this over siblings (e.g., scan_url, get_fix_pack). No alternatives or exclusions are provided, leaving usage context somewhat vague.
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-qualityAmaintenanceEvaluates any website's AI visibility with 15 checks across crawlability, structure, content, and connectivity, and provides actionable fixes.0MIT
- AlicenseAqualityBmaintenanceCheck whether a website is visible to AI search engines (ChatGPT, Perplexity, Claude, Google AI Overviews). Returns a 0-100 readiness score, a grade, and a specific fix for each gap. Dependency-free, no API keys.23MIT
- Alicense-qualityAmaintenanceAudits public websites for AI crawler access, public technical signals, and deployment readiness. Includes a focused path to the full readiness report when deeper remediation guidance is needed.MIT
- Flicense-qualityBmaintenancePassive website security and trust auditor that checks for security, SEO, AI surface, email, and other exposures, producing a score and remediation plan.