Readiness scorer — can an agent sign up to your SaaS?
Server Details
Probe a signup URL you own and score whether an AI agent can sign up unaided.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
3 toolsreadiness_get_scanARead-onlyIdempotentInspect
Step 3. Poll a scan by id. While status is queued/running only metadata is returned; when done you get the 0-100 score, grade, per-item rubric points with evidence, the fix list, and what could not be observed.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | scan id returned by readiness_request_scan |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses that the response varies based on scan status, returning only metadata while queued/running and full results when complete. This adds meaningful context beyond the readOnlyHint and idempotentHint annotations. It also lists specific result contents, including score, grade, rubric points, fix list, and unobservable items.
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 with no extraneous words; the first sentence states the action, the second explains the behavior. Information is front-loaded and each clause adds value.
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 description provides a complete picture of what the agent will receive, including the status-dependent behavior and the exact result components. Since there is no output schema, this is the primary source of return-value information. The single parameter is well-covered by the schema, and annotations cover safety and idempotency.
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 fully documents the single 'id' parameter with a description referencing readiness_request_scan, so the description adds little parameter-level detail. The phrase 'by id' reinforces the parameter's purpose but doesn't go beyond schema. With 100% schema coverage, a baseline score 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 identifies the action as polling a scan by id, with a specific resource and purpose. It distinguishes itself from siblings by focusing on retrieving scan results rather than requesting a scan or fetching a verification token. The verb 'Poll' is precise and the status-dependent return behavior is stated.
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 'Step 3' marker and the explanation of status-dependent responses convey when to use this tool in the workflow. It implies it should be called after readiness_request_scan, and the schema reinforces that the id comes from that tool. It does not explicitly name alternatives or when-not-to-use, but the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
readiness_get_verification_tokenARead-onlyIdempotentInspect
Step 1 of a readiness scan. Returns the domain-ownership token for the URL's host plus the three ways to publish it (DNS TXT record, tag, /.well-known file). The token is deterministic for the host, so calling this again returns the same value. Nothing is stored.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Public https URL of the SaaS signup (or landing) page, e.g. https://example.com/signup |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true. The description adds valuable context beyond that: it explains the token is deterministic (calling again returns the same value) and that nothing is stored. This reinforces the read-only nature and clarifies side effects, which is useful for an agent deciding whether to call it repeatedly.
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 no fluff. The core purpose is front-loaded, and the additional details (determinism, storage, publication methods) are relevant and compact. Every clause earns its place.
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 covers the essential return value (token and three ways to publish) and behavioral properties (deterministic, no storage). It does not describe the exact format of the token or the specific syntax of the publication methods, but given the simplicity, this is a minor gap and does not impede correct invocation.
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 covers the single 'url' parameter fully, describing it as a public https URL. The description does not add additional semantics about the parameter itself; it only uses 'URL's host' which is implicit. With 100% schema coverage, the baseline of 3 applies, and the description does not go beyond what the schema already provides.
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 states a specific action (returns the domain-ownership token) and a clear resource (the URL's host). It explicitly lists the three publication methods (DNS TXT, meta tag, .well-known file), which makes the tool's output unambiguous and distinguishes it from the sibling tools that get or request scans.
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 positions the tool as 'Step 1 of a readiness scan,' which tells the agent it is the first action in a sequence. It does not explicitly name alternatives or conditions for when not to use it, but the step ordering gives sufficient context for an agent to know this precedes readiness_get_scan or readiness_request_scan.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
readiness_request_scanAInspect
Step 2. Verifies domain ownership (DNS TXT / meta tag / .well-known must carry the token from readiness_get_verification_token), then queues a Playwright probe that tries to sign up, accept the terms and mint an API key with no human. Returns the scan id and the public results URL. Fails with DOMAIN_NOT_VERIFIED (with instructions) or RATE_LIMITED (3 scans per host per day). Never solves CAPTCHAs.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Public https URL of the SaaS signup (or landing) page, e.g. https://example.com/signup |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate not read-only and not idempotent, and the description adds substantial behavioral detail: it bypasses human interaction, never solves CAPTCHAs, enforces a 3-scans-per-host-per-day limit, and returns failure modes with instructions. This goes well beyond the annotations without contradicting them.
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?
Three dense sentences front-load the core action, then cover return value, failure modes, rate limits, and the no-CAPTCHA behavior. Every sentence earns its place with no fluff.
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 mutating, rate-limited, stateful operation with no output schema, the description still provides return values (scan id, results URL), error conditions, prerequisites, and behavioral constraints. An agent has enough to know when to call it and what to expect.
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 the single url parameter is already fully documented with format and example. The description adds the domain-ownership context and public-page requirement, but the schema already carries the essential semantics, so a 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?
States a specific verb and resource: verifies domain ownership and queues a Playwright probe that performs signup/acceptance/API key minting. The 'Step 2' marker and reference to readiness_get_verification_token clearly position it against the sibling tools readiness_get_scan and readiness_get_verification_token.
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?
Explicitly frames this as Step 2 after obtaining the verification token, and specifies the prerequisite that the domain must carry that token via DNS TXT, meta tag, or .well-known. It does not explicitly say 'use readiness_get_scan to poll', but the workflow context and return values make the intended usage clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
3 tool updates
- First observed
readiness_get_scan - First observed
readiness_get_verification_token - First observed
readiness_request_scan
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
Scores any public website on how usable it is by AI agents, with per-check evidence.
51Scan any public site for AI-agent visibility; get scored findings, a machine-readable fix pack, and
Scan a business website and see if AI agents can find it, trust it, and act on it.
11Scan any website or MCP server for agent-trust-readiness; returns a signed, verifiable scorecard.
Related MCP Servers
- AlicenseAqualityAmaintenancePoint your coding agent at a URL and get a real-browser QA audit: broken signup/login/checkout flows, JS console errors, missing analytics, consent + security headers, mobile tap targets, and accessibility — returned as machine-verified findings graded A-F.442Apache 2.0
- AlicenseNot gradedqualityAmaintenanceScans a website to score its compatibility and safety for AI agents, and exposes an audit tool via the Model Context Protocol.971MIT

ASO Score MCPofficial
AlicenseAqualityAmaintenanceScans websites to evaluate agent-readiness and produce an ASO Score Report across 34 signals, helping improve discoverability, trust, and interoperability for AI agents.253661MIT- FlicenseNot gradedqualityDmaintenanceEnables scanning any website for AI agent compatibility and marketing health, returning interactive dashboard reports with scores and revenue impact estimates.-
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a clearly distinct purpose: retrieving a verification token, requesting a scan, and polling scan results. No overlap in functionality.
All tool names follow the same pattern 'readiness_<verb>_<noun>' (get_scan, get_verification_token, request_scan), providing a consistent and predictable naming convention.
The three tools map directly to the necessary steps of the readiness scan workflow (token, request, result), making the set appropriately scoped without excess or deficiency.
The workflow is fully covered: obtaining the verification token, requesting the scan, and retrieving the final result. No missing operations or dead ends.