Skip to main content
Glama
schlpbch

Aareguru MCP Server

by schlpbch

Product View

product_view

Display a merchandise item's image, name, price, stock status, and description to help users inspect a product before adding it to their cart.

Instructions

Show a product detail page for a konsum.aare.guru merchandise item.

Displays the product image, name, price, stock status, and description. Use after list_shop_products to let the user inspect a specific item before adding it to their cart.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
langNode
product_idNoWooCommerce product ID (from list_shop_products)

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv4.9.0

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations provided, the description carries the transparency burden. It discloses what is displayed (image, name, price, stock status, description) but does not mention side effects, required permissions, or behavior on invalid product IDs. It is adequate but not rich in behavioral detail.

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?

The description is three sentences, front-loaded with the core purpose, then a list of displayed fields, and finally usage guidance. Every sentence adds value, and there is no redundancy or filler.

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

Completeness4/5

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

For a simple display tool with two parameters and no output schema, the description covers the primary purpose, displayed fields, and typical usage flow. It is missing an explanation of the lang parameter and any mention of return format, but given the low complexity these are minor gaps.

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

Parameters2/5

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

Schema coverage is only 50% (only product_id has a description). The description adds some context for product_id by linking it to list_shop_products, but it does not explain the lang parameter, whose schema entry has no description. Since the description fails to compensate for the undocumented lang parameter and does not clarify how parameters affect output, the value added is limited.

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?

The description states a specific verb and resource ('Show a product detail page for a konsum.aare.guru merchandise item') and enumerates displayed fields. It is clear about what the tool does, though it does not explicitly differentiate from the sibling tool get_shop_product, which may serve a similar purpose.

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 explicit usage context: 'Use after list_shop_products to let the user inspect a specific item before adding it to their cart.' This tells the agent when to use the tool, but it does not mention alternatives or when not to use it, such as when raw product data is needed instead of a rendered page.

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