About this store
storeWhat Decor Depot 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 Decor Depot 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?
With no annotations provided, the description carries the full burden, and it discharges most of it by disclosing that this is a zero-argument informational lookup returning store-level facts. It does not state that it is read-only or that it has no side effects, but for a parameterless info tool the inference is safe.
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 waste: the content facets come first and the call-ordering instruction is the closing imperative. 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?
Given a parameterless, no-output-schema tool, the description is nearly sufficient: it enumerates what the agent will learn. It could add a note about the return shape (single object vs list of fields), but nothing essential to calling it correctly is missing.
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 zero parameters, so the baseline is 4. There is nothing in the schema for the description to explain or compensate for.
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 a specific resource (the Decor Depot store) and enumerates its facets: what is sold, currency, shipping, purchase completion, catalogue size. That is far more concrete than a tautology, though it does not explicitly contrast itself with siblings like browse or categories.
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' gives an explicit ordering directive that tells the agent when to invoke this over the other catalogue tools. It stops short of naming when-not-to-use or which sibling supersedes it once the overview is known.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.