brightdata-collection

brightdata-collection is a skill for Claude Code, Codex from LuuOW/meridian-mcp. It costs 37 tokens per session (670 once invoked), scanned A, original, MIT.

A guide for collecting information from difficult websites using Bright Data, a web-data service. It covers JavaScript-rendered pages, region-specific search results, and sites that block ordinary automated requests.

In plain words
What is it for?
Use it to capture regional search pages, retrieve browser-rendered applications, or collect pages protected by anti-bot systems.
Why use it?
It provides a fallback when normal search or page fetching returns incomplete results, empty page shells, or access blocks.

Skill for Claude CodeCodex

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

Good fit Use it to capture regional search pages, retrieve browser-rendered applications, or collect pages protected by anti-bot systems.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/luuow/meridian-mcp/brightdata-collection
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 LuuOW/meridian-mcp --skill brightdata-collection
Clone the repo
git clone --depth 1 https://github.com/LuuOW/meridian-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 brightdata-collection

README.md
[![agentmods](https://agentmods.dev/badge/skills/luuow/meridian-mcp/brightdata-collection/github.svg)](https://agentmods.dev/skills/luuow/meridian-mcp/brightdata-collection)
Your own site
<a href="https://agentmods.dev/skills/luuow/meridian-mcp/brightdata-collection"><img src="https://agentmods.dev/badge/skills/luuow/meridian-mcp/brightdata-collection/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 brightdata-collection

Your own site · 80×15
<a href="https://agentmods.dev/skills/luuow/meridian-mcp/brightdata-collection"><img src="https://agentmods.dev/badge/skills/luuow/meridian-mcp/brightdata-collection.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 670 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 original No closer match found 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.00037 $0.00670
Opus 5 $0.00018 $0.00335
Sonnet 5 $0.00007 $0.00134
Haiku 4.5 $0.00004 $0.00067

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

Security

Grade A, and why

brightdata-collection 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 9d 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.

skills/brightdata-collection/SKILL.md · 80 lines

How it starts

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

brightdata-collection

Use this only when simpler search or extraction paths are insufficient.

Best Uses

  • geo-specific SERP capture
  • JavaScript-heavy targets
  • anti-bot-protected sites
  • browser-rendered collection
  • difficult competitor pages that normal HTTP scraping cannot access reliably

Required Env

  • BRIGHTDATA_API_KEY

Optional:

  • BRIGHTDATA_ZONE
  • BRIGHTDATA_COUNTRY

Invocation Threshold

Bright Data is not the default. Use it when one of these is true:

  • the target requires rendering
  • the target is blocked to normal fetch tools
  • the task requires region-specific result pages
  • the task explicitly needs search-result capture or browser automation

Collection Rules

  • state why Bright Data is required before use
  • keep requested geography explicit
  • minimize pages collected to reduce cost
  • save the exact target pattern when a route succeeds

Example Task Shapes

  • capture US desktop SERP for a keyword
  • fetch a React app page that returns empty shells to non-browser clients
  • collect pricing pages from a site with aggressive bot defenses

Avoid

  • general source discovery that Exa can handle
  • straightforward content extraction from static pages that Firecrawl can handle

Residential Proxy via Playwright

For browser automation that requires a residential IP (e.g. LinkedIn, which blocks datacenter IPs at the Cloudflare layer), route Playwright through BrightData's residential proxy. Set the proxy at browser.newContext() level — not chromium.launch(). context.request (Playwright's APIRequestContext) does not inherit the launch-level proxy and returns 407.

const proxy = {
  server:   'http://brd.superproxy.io:22225',
  username: 'brd-customer-hl_XXXXX-zone-ZONE-session-STICKY_ID',
  password: 'ZONE_PASSWORD',
};

const browser = await chromium.launch({ args: ['--no-sandbox'] });
const context = await browser.newContext({ proxy });  // ← correct level
// Now both page.goto() and context.request.get() route through the proxy

Read the full file on GitHub · 80 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. 9d ago First seen · 80 lines · 37 tokens per session scan A 3c1fb01c8f33

Subscribe to this mod's changes

brightdata-collection is a skill published in the GitHub repository LuuOW/meridian-mcp (0 stars, last pushed yesterday), licensed MIT. It adds 37 tokens to every session and 670 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.