dns-connector

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

A connector for reading product information from DNS-Shop, a Russian electronics retailer, through an operator’s Chrome browser.

In plain words
What is it for?
Searching the DNS-Shop catalogue by text and checking a product’s price, previous price, or availability. It also provides a basic check that the page and extractor returned data.
Why use it?
It handles DNS-Shop’s browser challenge pages, which block ordinary direct requests. It helps retrieve rendered search results and product details when a normal web request cannot.

Skill for Claude CodeCodex

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

Good fit Searching the DNS-Shop catalogue by text and checking a product’s price, previous price, or availability. It also provides a basic check that the page and extractor returned data.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/neuratechcompany-ops/kettu-marketplace-mcp/dns-connector"><img src="https://agentmods.dev/badge/skills/neuratechcompany-ops/kettu-marketplace-mcp/dns-connector.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 726 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 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.00067 $0.00726
Opus 5 $0.00034 $0.00363
Sonnet 5 $0.00013 $0.00145
Haiku 4.5 $0.00007 $0.00073

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

Security

Grade A, and why

dns-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

92% identical to dns-connector — 10 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/dns-connector/SKILL.md · 60 lines

How it starts

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

DNS-Shop Connector

Reads DNS-Shop inside the operator's Chrome over CDP. Qrator's JavaScript proof-of-work answers every dynamic page with HTTP 401 + a challenge script — no header trick clears it, but a real Chrome executes it natively. The connector renders the page and reads the DOM.

When to use

  • Search DNS electronics catalog by text
  • One product's price, old price, availability

Tools available

  • dns_search(query) — tiles from the rendered search page
  • dns_card(product_url) — one card. The URL carries /product/<id>/, where the id is a 16-hex string: /product/b7a1667f9b19ed20/. A bare id also works.
  • dns_selfcheck() — tri-state canary

A green selfcheck does NOT mean the data is right

This connector is why that sentence appears throughout this repo. In July 2026 the product-id regex was fixed, search began returning 24 links, and dns_selfcheck went green — while every item still came back with title: null and price: null. The transport was fine; the parser understood nothing.

dns_selfcheck answers one question: did the page load and did the extractor return a shape. If a number has to be trusted, open the product page in the same Chrome and read it.

The price on a DNS tile is not the smallest number on it

Three traps, all confirmed against the live grid on 2026-07-28:

  • An instalment sits next to the price. A tile showing 58 999 ₽ also shows от 5 751 ₽/ мес.. Anything that takes the minimum reports the monthly payment — a number that validates, looks plausible and is wrong. The extractor reads the named price node and skips instalment and bonus nodes.
  • The strikethrough price carries no currency glyph.product-buy__prev renders a bare 54 999, so a filter keyed on never sees it.
  • The first product anchor in a tile is the image link, which has no text. Tiles are selected by the exact BEM block .catalog-product, never by walking up from an anchor.

price_rub is None when no price could be read — never 0, never a guess. If a whole page comes back unpriced the response carries a no_prices_on_page warning: that is drift to investigate, not "free".

Read the full file on GitHub · 60 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 · 60 lines · 67 tokens per session scan A 8a153e3ec729

Subscribe to this mod's changes

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

Related

Other skills, from other repositories

ebay-search-listing

Extracts product listings from any eBay search or category page URL, returning per-item cards (itemNumber, url, title, subtitle, caption, price, priceWithCurrency, currency, wasPrice, bids, shipping, seller, sellerFeedbackCount, sellerPositiveRating, reviewsCount, starRating, image) plus pagination state (currentPage…

browser-act/skills · 221 tokens

amazon-bestseller-listing

Amazon Best Sellers listing scraper: extract product cards from any Amazon Best Sellers (zgbs) or /gp/bestsellers/ category page — returns rank (position on chart), asin, title, url, image, imageAlt, price, stars, reviewCount, ratingRaw per item, plus category metadata (categoryName, categoryFullName, categoryUrl) and…

browser-act/skills · 300 tokens

amazon-search-listing

Amazon search and category listing scraper: extract product listings from any Amazon search results page, keyword search URL, or category browse page and return per-item cards (asin, title, url, image, price, listPrice, stars, reviewCount, badges, isAmazonChoice, isBestSeller, isSponsored, delivery, boughtInPast…

browser-act/skills · 341 tokens

etsy-category-listing

Etsy category page scraper: given an Etsy category URL (e.g. https://www.etsy.com/c/jewelry) and optional page number, returns paginated product listings with listingId, shopId, title, url, image, salePrice, originalPrice, currency, rating, reviewCount, shopName, isAd, freeShipping, badge from category and subcategory…

browser-act/skills · 209 tokens

etsy-product-detail

Etsy product detail scraper: given an Etsy listing URL, returns full product detail including listingId, title, priceCurrent, priceOriginal, currency, images (all), description, shopName, shopUrl, rating, reviewCount, favorites, inCartCount, variations (with per-option price ranges), highlights, listedDate…

browser-act/skills · 187 tokens

etsy-shop-catalog

Etsy shop catalog scraper: given an Etsy shop URL (e.g. https://www.etsy.com/shop/{shop-name}) and optional page number, returns paginated product listings from that shop's own storefront with listingId, shopId, title, url, image, salePrice, originalPrice, currency, rating, reviewCount, shopName, isAd, freeShipping…

browser-act/skills · 208 tokens