ozon-connector

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

A connector for Ozon, an online marketplace, that retrieves product information, catalog results, prices, ratings, sellers, characteristics, and reviews.

In plain words
What is it for?
Use it to search Ozon, inspect a product, read reviews, or compare Ozon prices with Wildberries.
Why use it?
It provides Ozon data even when ordinary web requests are blocked by the site's security checks.

Skill for Claude CodeCodex

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

Good fit Use it to search Ozon, inspect a product, read reviews, or compare Ozon prices with Wildberries.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/neuratechcompany-ops/kettu-marketplace-mcp/ozon-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 ozon-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 ozon-connector

README.md
[![agentmods](https://agentmods.dev/badge/skills/neuratechcompany-ops/kettu-marketplace-mcp/ozon-connector/github.svg)](https://agentmods.dev/skills/neuratechcompany-ops/kettu-marketplace-mcp/ozon-connector)
Your own site
<a href="https://agentmods.dev/skills/neuratechcompany-ops/kettu-marketplace-mcp/ozon-connector"><img src="https://agentmods.dev/badge/skills/neuratechcompany-ops/kettu-marketplace-mcp/ozon-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 ozon-connector

Your own site · 80×15
<a href="https://agentmods.dev/skills/neuratechcompany-ops/kettu-marketplace-mcp/ozon-connector"><img src="https://agentmods.dev/badge/skills/neuratechcompany-ops/kettu-marketplace-mcp/ozon-connector.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 98 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 715 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 92% 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.00098 $0.00715
Opus 5 $0.00049 $0.00358
Sonnet 5 $0.00020 $0.00143
Haiku 4.5 $0.00010 $0.00072

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

Security

Grade A, and why

ozon-connector scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

Protocol. Plain curl/httpx fails outright (307 loop on the TLS fingerprint), which is
Origin

This is a copy

92% identical to ozon-connector — 16 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/ozon-connector/SKILL.md · 54 lines

How it starts

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

Ozon Connector

Two-tier connector. Tier 1 is curl_cffi with TLS impersonation and handles most queries — no browser involved. Only when Cloudflare serves a JS challenge does the fetch fall back to tier 2, inside the operator's logged-in Chrome over the DevTools Protocol. Plain curl/httpx fails outright (307 loop on the TLS fingerprint), which is why tier 1 impersonates and tier 2 exists at all.

Prerequisite

Nothing to set up for tier 1. For the tier-2 fallback, Chrome is started on first use by mcp_core.transport.chrome_cdp if the CDP port is not already listening, into a dedicated %LOCALAPPDATA%\Chrome-Scraping profile. From a Russian residential IP tier 1 usually answers and Chrome is never touched.

When to use

  • Product detail: price, rating, seller, characteristics
  • Search Ozon catalog
  • Cross-check Ozon vs WB prices

Tools available

  • ozon_card(sku_or_path) — fetch full product card via composer-api.bx
  • ozon_search(query) — search Ozon catalog (top 20 results)
  • ozon_reviews(sku_or_path, limit, sort) — product reviews
  • ozon_selfcheck() — drift canary; success means both tiers answered, inconclusive means Chrome was unreachable, drift_detected means the payload shape moved

Workflow

  1. ozon_search("query") → get list of SKUs
  2. ozon_card(sku) → drill into chosen product
  3. If a call comes back blocked, the tier-1 request was challenged — start Chrome for the fallback (scripts/start_chrome_cdp.ps1), log into ozon.ru in the scraping profile, and retry. Confirm the port with Test-NetConnection 127.0.0.1 -Port 9222.

Gotchas

  • Ozon sometimes shows captcha challenge. Library waits 5s but cannot solve captcha. If status=error type=parse, open ozon.ru manually, solve captcha, retry.
  • ETOZ TLS fingerprint check is why we use CDP. Do NOT try curl/httpx directly.
  • Composer-api widget keys vary (webPrice-XXXX). Library scans all webPrice-* keys.

Sources of truth

Methodology validated 2026-05-25 against live Ozon catalog data; CDP-via-fetch method tested on multiple SKUs across categories.

Read the full file on GitHub · 54 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 · 54 lines · 98 tokens per session scan A 23b995d4bc8a

Subscribe to this mod's changes

ozon-connector is a skill published in the GitHub repository neuratechcompany-ops/kettu-marketplace-mcp (4 stars, last pushed 5d ago), licensed MIT. It adds 98 tokens to every session and 715 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 92% identical to ozon-connector, differing in 16 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