Skip to main content
Glama
SZhukovWork

podrygka-mcp

by SZhukovWork

get_store_availability

Read-onlyIdempotent

Check product availability by article number to see which city stores and online warehouse have it in stock, with addresses, quantities, and opening hours.

Instructions

Where one article can be picked up today: stock in each store of the city, the rest of the region, and online.

Per store: address, units, the site's level (мало/средне/много), opening hours, coordinates. The online warehouse is reported separately. Store prices may differ from the online price.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityNoCity name as the shop knows it (add ', <region>' for same-named towns). Default: env PODRYGKA_CITY or Екатеринбург
articleYespodrygka.ru article (артикул), the number in the product URL, e.g. 242804

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already convey read-only, idempotent, and non-destructive behavior. The description adds two non-obvious behaviors: the online warehouse is returned separately, and store prices may differ from the online price. That is useful context beyond the structured fields.

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-loads the core purpose, and every sentence adds information: output scope, returned per-store fields, and online/price caveats. There is no fluff.

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

Completeness5/5

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

For a read-only lookup with two parameters, an output schema, and strong annotations, the description covers all behavioral context needed: scope (city/region/online), per-store data presence, separate online warehouse, and price discrepancy. Nothing material 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?

Schema coverage is 100%, so the schema already documents the article format and city default. The description does not add new parameter-level details; its references to 'one article' and geographic scope are helpful but already implied by the schema and annotations.

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

Purpose5/5

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

The description leads with a concrete task, 'Where one article can be picked up today,' then defines the result: stock per store, region, and online. This clearly separates it from sibling tools like get_product (product info) and list_stores (store info without availability).

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?

It gives clear context: use this to answer where a single article is available today, including local stores, regional stores, and online. It does not explicitly name alternatives or exclusion conditions, but the scope is obvious enough that an agent will not confuse it with the listed siblings.

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