Skip to main content
Glama
SZhukovWork

podrygka-mcp

by SZhukovWork

list_stores

Read-onlyIdempotent

Retrieve store IDs, addresses, and in-stock product counts for a city's region. Grouped by city, town, or unspecified location to help locate stock availability.

Instructions

Stores of the chain in the city's region with their ids (for search in_store) and addresses.

products_in_stock is how many catalog items the site counts in stock in that store. Stores are grouped by what the address says: this city, another town of the region, or no town in the address.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityNoCity name as the shop knows it (add ', <region>' for same-named towns). Default: env PODRYGKA_CITY or Екатеринбург

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and non-destructive behavior. The description adds useful context beyond that: grouping by address interpretation (this city, another town, no town) and the meaning of products_in_stock as the site's catalog count rather than physical inventory.

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?

Three compact sentences with no filler. The first sentence states the output and purpose, the second defines an important field, and the third explains grouping. Appropriate length for the tool's simplicity.

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 low-complexity, read-only list call with one optional parameter and an output schema, the description covers scope, field semantics, and grouping behavior. It could be slightly more explicit about when to use this tool over siblings, but nothing needed to invoke it correctly is missing.

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?

The input schema already fully documents the single optional city parameter, including the default and the region-suffix formatting hint. The description adds no additional parameter-level detail, so the baseline of 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?

The description names the resource ('stores of the chain'), the scope ('in the city's region'), and the purpose ('ids for search in_store'). It is more than a restatement of the name, though it is phrased as a noun phrase rather than an explicit verb like 'List'.

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?

It gives an implicit usage context ('for search in_store') and explains how stores are grouped, but it does not explicitly say when to prefer this tool over siblings like get_store_availability or search_products, nor does it state when not to use it.

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