Skip to main content
Glama

check_merchant_readiness

Read-onlyIdempotent

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.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
hostYesStore hostname or URL, e.g. shop.example.com

TDQS

A4.7/5.0
Behavior5/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation5/5

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.

Naming Consistency5/5

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.

Tool Count4/5

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.

Completeness2/5

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.