About this store
storeWhat Dining Co sells, its currency, where it ships, how a purchase completes, and the catalogue's size. Call this first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
storeWhat Dining Co sells, its currency, where it ships, how a purchase completes, and the catalogue's size. Call this first.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It discloses the informational payload and implies a read-only, no-argument call, but never states explicitly that it mutates nothing, requires no auth, or returns static metadata. For a zero-parameter read tool this is adequate but thin.
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?
One compact sentence enumerating the payload plus a two-word imperative. Every clause earns its place. The 'Call this first' instruction is arguably the most actionable part and sits last, which is a minor front-loading miss.
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 no input parameters, no output schema, and no nested structures, the description's content list is sufficient for the agent to know what comes back and when to call it. An explicit statement that it is read-only and side-effect free would make it fully complete.
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 tool takes no parameters and the schema is empty, so there is nothing for the description to disambiguate. Baseline 4 applies; no syntax or defaults need explaining.
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 what the tool returns: merchandise, currency, shipping destinations, purchase flow, and catalogue size for 'Dining Co'. That is a specific informational resource, and it is distinguishable from siblings like browse, product, or cart, which all do something rather than describe the store. It falls short of 5 only because 'store' is a generic name and the tool is defined almost entirely by its content list.
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?
'Call this first' is an explicit ordering instruction that tells the agent when to reach for this tool relative to the others. It does not name any when-not condition or an alternative for when store metadata is unnecessary, so it stops short of full routing guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.