podrygka-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PODRYGKA_LOG | No | `DEBUG` logs every request (path, status, time) to stderr; tokens and keys are never logged | INFO |
| PODRYGKA_CITY | No | Default city for stock and delivery (any tool also takes `city`). Use the name from `find_city`; add `, <region>` for same-named towns | Екатеринбург |
| PODRYGKA_PROXY | No | Proxy URL, e.g. `http://user:pass@host:3128` | |
| PODRYGKA_TIMEOUT | No | HTTP timeout, seconds | 25 |
| PODRYGKA_CACHE_DIR | No | Guest token, review-widget key, city, category and store lists (files `0600`, directory `0700`) | ~/.cache/podrygka-mcp |
| PODRYGKA_MIN_INTERVAL | No | Seconds between requests to podrygka.ru. Keep it: the shop has no published limits and the IP is yours | 1.5 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_productsA | Search the podrygka.ru catalog like the site: pages of 20, sorting, price window and filters. Per item: online price with the kind of discount it contains and the promotions with
their card rules, price per 100 ml/g when the pack size is in the name, line rating and
review count (shared by all shades), number of variants and their price range, online
stock, stock and number of stores in the region, delivery terms for the city.
|
| get_productA | Full live card of one article. Online price with the kind of discount and the promotions' card rules, price per unit, online stock and store stock (city stores separate from the rest of the region), delivery terms for the city (cost only at checkout), ratings — the line rating shown on the site next to the variant's own rating computed from its own reviews — every variant with its price and stock, characteristics (country, tone, composition, usage, package dimensions and weight). |
| get_reviewsA | Buyer reviews: date, stars, text, pros, cons, 'verified' flag, likes, photo count, time of use. Also the star split and the average computed from it for the chosen scope, next to the line rating the site shows. Reviews in the 'line' scope are not tied to a shade. Author names, e-mails, phones and order numbers are never returned. |
| get_store_availabilityA | 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. |
| list_storesA | Stores of the chain in the city's region with their ids (for search in_store) and addresses.
|
| compare_productsA | Up to 20 articles side by side in one request: price and discount kind, promotions with card rules, price per unit, line rating, variants, online and region stock, delivery terms. Articles the site does not return are listed with a reason. |
| find_cityA | Cities in the shop's directory matching a name, with their region. Use the exact name (plus ', ' when several towns share it) as |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Each tool targets a clearly distinct concern: searching, city lookup, product details, reviews, per-store availability, store listings, and side-by-side comparison. Even the overlapping search/compare/detail tools are cleanly separated by cardinality and purpose.
All tool names follow a consistent snake_case verb_noun pattern: search_products, find_city, get_product, get_reviews, get_store_availability, list_stores, compare_products. The verbs and nouns are descriptive and predictable.
Seven tools is well-scoped for a read-only retail catalog information server. Each tool earns its place and the count is neither thin nor bloated.
The toolkit covers the full read-only product information workflow: finding the city, searching the catalog, getting full product details, reading reviews, checking store availability, listing stores, and comparing products. No significant workflow dead ends are apparent for the stated domain.