audit
Server Details
Can an AI shopping agent find, understand and BUY on a store? Deterministic e-commerce audit /100.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- agentready-market/agentready
- GitHub Stars
- 0
- Server Listing
- agentready
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 serves a distinct purpose: one checks a specific merchant's readiness score, one retrieves the detailed report for a scanned store, and one lists agent-ready stores. Even though the first two both relate to a single store, their descriptions clearly differentiate between a quick score check and a full report.
All tool names follow a consistent verb_noun pattern in snake_case: check_merchant_readiness, get_readiness_report, list_agent_ready_stores. The verbs (check, get, list) are appropriate and consistently formatted.
With 3 tools, the server is at the lower end of the typical well-scoped range but still reasonable for a read-only query surface. It covers the core actions of checking a store, getting a report, and listing stores, though slightly more tools could round out the functionality.
The server lacks a tool to initiate a new audit/scan, which is a significant gap given the 'audit' name. Additionally, there is no way to list all scanned stores (only those that are agent-ready), limiting visibility into non-ready stores. These are notable missing operations that could cause agent failures when trying to audit a new store.
Available Tools
3 toolscheck_merchant_readinessARead-onlyIdempotentInspect
Check whether an AI shopping agent can find, understand and BUY on an e-commerce store: AgentReady's deterministic agent-readiness score /100 for a host, with grade, hard-block status (capped = agents are blocked at the door) and agent-protocol adoption (UCP, A2A, ARD). Scores exist for stores whose merchant ran a scan at agentready.market — this tool never triggers a new audit of a third-party site.
| Name | Required | Description | Default |
|---|---|---|---|
| host | Yes | Store hostname or URL, e.g. shop.example.com |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses key behavioral traits beyond the annotatiations: it is a lookup-only operation that never initiates a new third-party audit, and it depends on prior scans by the merchant. It also enumerates the specific output components (score, grade, hard-block status, protocol adoption). This adds significant value beyond the read-only and idempotent hints.
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, each earning its place: the first states the purpose and output details, the second explains the precondition and non-behavior. The information is front-loaded and tightly packed without 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?
For a simple one-parameter, read-only tool with no output schema, the description is complete. It explains the return values, the precondition, and that no new audit is triggered. It is sufficient for an agent to select and invoke 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 already provides a good description of 'host' with an example, and coverage is 100%. The description adds the constraint that scores only exist for stores that have been scanned, which gives the parameter contextual validation. This goes beyond the schema's basic type description.
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 checks an AI agent's ability to buy on an e-commerce store and returns a deterministic readiness score with grade, hard-block status, and protocol adoption. It distinguishes itself from triggering a new audit, making its purpose specific. The verb 'Check' and resource 'host' are explicit.
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: scores exist only for stores that have been scanned, and this tool never triggers a new audit. This implies when to use it (for existing scans) and when not (for new audits), though it doesn't explicitly name alternatives like list_agent_ready_stores. This is strong guidance but falls short of fully contrasting with sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_readiness_reportARead-onlyIdempotentInspect
The latest public agent-readiness report for a scanned store: every check with its status (pass/partial/fail) across access & crawlability, structured data and catalog pillars, plus score, grade and report link. Same visibility as the public web report.
| Name | Required | Description | Default |
|---|---|---|---|
| host | Yes | Store hostname or URL, e.g. shop.example.com |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, so the safety profile is clear. The description adds meaningful context: the report is public (same visibility as the web report) and describes the returned data structure. This goes 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?
The description is two sentences, front-loaded with the main purpose, and every clause adds value. It is concise yet information-dense, covering the object, scope, contents, and access level without 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 one required parameter, a read-only operation, and no output schema, the description sufficiently explains what the tool returns (check statuses, score, grade, link) and its public nature. This is complete for an agent to invoke it correctly without additional context.
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 covers the single 'host' parameter with a clear description and example. The tool description does not add additional parameter-level meaning, so it earns the baseline score for schema coverage being high (100%).
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 retrieves the latest public agent-readiness report for a scanned store, specifying the report's contents (checks, statuses, pillars, score, grade, link). This distinguishes it from siblings like list_agent_ready_stores (listing stores) and check_merchant_readiness (likely initiating/checking readiness).
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 for a specific scanned store's latest report ('scanned store' suggests prerequisite), but does not explicitly state when to prefer this tool over alternatives or when not to use it. No alternative tools are mentioned by name, so guidance is only implied rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_agent_ready_storesARead-onlyIdempotentInspect
The Agent-Ready Index: e-commerce stores where an AI shopping agent can actually buy (grade B or better), ranked by agent-readiness score /100. Use it to route a purchase toward a store agents are known to succeed on, or to benchmark a store against its peers. Optionally filter by vertical and cap the number of rows.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max rows to return (default 10, max 25) | |
| vertical | No | Optional vertical filter, e.g. supplements |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds behavioral context by specifying the grade cutoff (B or better) and ranking logic, which are useful beyond the 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 three sentences, front-loaded with a clear purpose, then use cases, then parameter options. Every sentence earns its place with no redundancy or 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?
Given the tool's simplicity (2 optional params, no output schema), the description adequately covers purpose, use cases, and parameter behavior. It doesn't enumerate return fields, but for a list tool with a scoring metric, this is sufficient.
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% (both limit and vertical are described). The description mentions 'filter by vertical and cap the number of rows,' which aligns with the params but adds little beyond what the schema already states. Baseline 3 is appropriate as the schema does the heavy lifting.
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 lists e-commerce stores meeting a specific criterion (grade B or better) and ranks them by an agent-readiness score. This distinguishes it from siblings like check_merchant_readiness (which likely checks a single merchant) and get_readiness_report (which likely provides a detailed report).
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 explicitly provides two use cases: routing purchases toward reliable stores and benchmarking stores against peers. It does not explicitly name alternatives or state when not to use, but the use cases give clear context for when this tool is appropriate.
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
- AlicenseBqualityAmaintenanceMCP server for auditing product pages to determine AI shopping agent readiness, providing a 0–100 score and actionable fixes.Last updated114Apache 2.0
- Flicense-qualityBmaintenanceEnables AI agents to browse product catalogs, search products with filters, and initiate checkouts, generating order summaries and checkout URLs.Last updated
- AlicenseBqualityBmaintenanceMachine-readable merchant verification infrastructure for AI shopping agents and agentic commerce systems.Last updated13MIT
- Flicense-qualityDmaintenanceEnables AI agents to perform e-commerce operations including product search, budget-constrained shopping recommendations, and sustainability analysis. Includes a secure HTTP bridge with OAuth integration and observability features for production deployment.Last updated
Your Connectors
Sign in to create a connector for this server.