Skip to main content
Glama
Novigante

mcp-loyverse

by Novigante

get_store

Read-only

Retrieve complete details of a specific store by its UUID. Use this to look up store information, including name and address, for a given store ID.

Instructions

Get full details of a specific store by its ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
store_idYesThe store UUID to look up

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

B3.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, so the safety profile is covered by structured data. The description adds the retrieval scope ('full details of a specific store') but nothing about return format, pagination, or error behavior when the ID does not exist.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single efficient sentence with the resource and lookup key front-loaded. No wasted words, though it is perhaps minimally under-specified rather than tightly optimized.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple single-param read tool with annotations covering safety, this is adequate. No output schema exists, but the description does not need to detail returns; still, it could note what 'full details' encompasses or the not-found case given no output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and the single parameter is fully documented as 'The store UUID to look up'. The description adds no syntax or format detail beyond what the schema provides, so baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource ('Get full details of a specific store by its ID'). Clear and unambiguous, but does not differentiate from the sibling 'list_stores' or explain what 'full details' includes versus the list variant.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'by its ID' implies usage when you have a store_id, and the sibling list_stores implies the alternative for browsing all stores. But no explicit when-to-use/when-not guidance or named alternative is provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.