yandex-connector

yandex-connector is a skill for Claude Code, Codex from neuratechcompany-ops/kettu-marketplace-mcp. It costs 88 tokens per session (1,058 once invoked), scanned A, a copy of yandex-connector, MIT.

A connector for reading product information from Yandex Market, a Russian shopping site that compares offers from multiple sellers. It provides prices, ratings, stock information, and buyer reviews.

In plain words
What is it for?
Checking current prices, comparing sellers, examining star-rating distributions, reading buyer reviews, and finding products across shopping categories.
Why use it?
It gathers competing seller offers and detailed rating breakdowns in one place, making product comparisons easier.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Checking current prices, comparing sellers, examining star-rating distributions, reading buyer reviews, and finding products across shopping categories.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/neuratechcompany-ops/kettu-marketplace-mcp/yandex-connector
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add neuratechcompany-ops/kettu-marketplace-mcp --skill yandex-connector
Clone the repo
git clone --depth 1 https://github.com/neuratechcompany-ops/kettu-marketplace-mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for yandex-connector

README.md
[![agentmods](https://agentmods.dev/badge/skills/neuratechcompany-ops/kettu-marketplace-mcp/yandex-connector/github.svg)](https://agentmods.dev/skills/neuratechcompany-ops/kettu-marketplace-mcp/yandex-connector)
Your own site
<a href="https://agentmods.dev/skills/neuratechcompany-ops/kettu-marketplace-mcp/yandex-connector"><img src="https://agentmods.dev/badge/skills/neuratechcompany-ops/kettu-marketplace-mcp/yandex-connector/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for yandex-connector

Your own site · 80×15
<a href="https://agentmods.dev/skills/neuratechcompany-ops/kettu-marketplace-mcp/yandex-connector"><img src="https://agentmods.dev/badge/skills/neuratechcompany-ops/kettu-marketplace-mcp/yandex-connector.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 88 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,058 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 91% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00088 $0.01058
Opus 5 $0.00044 $0.00529
Sonnet 5 $0.00018 $0.00212
Haiku 4.5 $0.00009 $0.00106

Measured 12d ago against content hash 9a0237095827, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

yandex-connector scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

91% identical to yandex-connector — 35 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/yandex-connector/SKILL.md · 94 lines

How it starts

The opening of the file, as written. The whole thing — 94 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Yandex Market Connector

Read Yandex Market via yandex_* tools. No credentials, no browser: the data comes from the server-rendered page state.

Yandex Market aggregates many sellers per product, which makes it the best single source for "what does this actually cost right now" — and it lists categories (appliances, electronics, groceries) that Wildberries and Ozon cover unevenly.

When to use

  • Price check across competing sellers for one product
  • Rating analysis, especially the star distribution — a 4.8 average with a 1-star cluster tells a very different story than a clean 4.8
  • Reading buyer reviews with pros/cons separated
  • Finding products outside WB/Ozon's strong categories

Tools

  • yandex_search(query, page=1, limit=12) — text search. Returns products with both prices, ratings, sellers and stock.
  • yandex_card(product_id, include_reviews=True) — full detail: prices, offer count, star breakdown, and the reviews.
  • yandex_selfcheck() — drift canary. Run it after install and whenever results look wrong.

The price field that matters most

Every price appears twice, and the difference is not cosmetic:

  • price_rub — what anyone pays. Quote this one.
  • price_with_plus — requires a paid Yandex Plus subscription, typically 25-30% lower.

Yandex's own UI leads with the subscriber price, so it is easy to quote a number the operator cannot actually get. On a card there is also price_before_discount_rub (the pre-discount reference) and discount_percent.

Workflow patterns

Price check:

  1. yandex_search(query="стиральная машина узкая", limit=10)
  2. Report price_rub; note price_with_plus only as a footnote.
  3. total_available tells you how much else exists beyond the page.

Rating analysis (the connector's strongest use):

  1. yandex_search(query="...") → take product_id of the candidate
  2. yandex_card(product_id=...)
  3. Read rating_stars{1: 10, 2: 3, 3: 10, 4: 19, 5: 502} means 4.8 is genuinely earned; a fat 1-star bucket means the average is hiding something.
  4. Read reviews for the qualitative side: pros, cons, votes_up.

Read the full file on GitHub · 94 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 94 lines · 88 tokens per session scan A 9a0237095827

Subscribe to this mod's changes

yandex-connector is a skill published in the GitHub repository neuratechcompany-ops/kettu-marketplace-mcp (4 stars, last pushed 5d ago), licensed MIT. It adds 88 tokens to every session and 1,058 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. It is 91% identical to yandex-connector, differing in 35 lines, and is treated as a copy.

Related

Other skills, from other repositories

amazon-reviews-api-skill

This skill helps users automatically extract Amazon product reviews via the Amazon Reviews API. Agent should proactively apply this skill when users express needs like getting reviews for Amazon product with ASIN B07TS6R1SF, analyzing customer feedback for a specific Amazon item, getting ratings and comments for a…

browser-act/skills · 124 tokens

amazon-competitor-analyzer

Scrapes Amazon product data from ASINs using browseract.com automation API and performs surgical competitive analysis. Compares specifications, pricing, review quality, and visual strategies to identify competitor moats and vulnerabilities.

browser-act/skills · 48 tokens

asc-subscription-localization

Bulk-localize subscription, subscription-group, and in-app purchase display names across App Store locales using asc, including API 4.4.1 version-scoped v2 resources. Use when filling or updating subscription/IAP names and descriptions without App Store Connect UI work.

rorkai/app-store-connect-cli-skills · 60 tokens

food-order

Reorder previous Foodora orders, preview cart contents, and track delivery ETA/status with ordercli. Use when the user wants to reorder food, check delivery status, or browse recent Foodora order history. Never confirm an order without explicit user approval.

Bitterbot-AI/bitterbot-desktop · 53 tokens

product-description-generator

E-commerce product description generator for any platform. Generates optimized titles, bullet points, descriptions, and backend keywords using competitor research + keyword scoring + FABE copywriting. Two modes: (A) Create — generate listing from product specs with optional competitor analysis, (B) Optimize — improve…

nexscope-ai/eCommerce-Skills · 126 tokens

amazon-price-tracker

Amazon price monitoring and competitive pricing intelligence. Real-time price tracking, Buy Box analysis, promotion detection, and dynamic pricing strategy optimization. Use when the user asks about price monitoring, competitor pricing, Buy Box tracking, or pricing strategy.

nexscope-ai/Amazon-Skills · 51 tokens