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.
npx skills add LuuOW/meridian-mcp --skill brightdata-collectiongit clone --depth 1 https://github.com/LuuOW/meridian-mcpWrote 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.
[](https://agentmods.dev/skills/luuow/meridian-mcp/brightdata-collection)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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_ZONEBRIGHTDATA_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
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.
- 9d ago First seen · 80 lines · 37 tokens per session scan A 3c1fb01c8f33
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.
Other skills, from other repositories
humanize-automation
Human-like mouse, keyboard and scroll behavior for behavioral bot bypass.
stealth-browser-launch
Launch stealth Chromium with C++ fingerprint patches for anti-bot bypass.
stealth-browser
Anti-detection behavioral rules for stealth browser automation.
browser-automation
Web automation with 4-layer escalation (Fetch, Genesis Browser, On-Demand MCP, Computer Use), anti-detection, and persistent profiles.
data-scraper
Use when data lives on a website with no usable API — listings, prices, public records — and the scrape must stay legal and not get blocked: legal gate, extraction path, durable selectors, pacing, resilience. NOT parsing bytes you already hold into fields (that is structured-extraction), NOT a documented API or key…
browser-automation-expert
Drive a real browser to navigate, extract data and complete flows on sites without an API: scraping, crawling, authentication, dynamic content and anti-bot handling. Use when the user mentions web scraping, crawling, browser automation, Puppeteer or headless Chrome, wants data pulled from a website, needs a login or…