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 agentmods add skills/luuow/meridian-mcp/web-intelligencenpx skills add LuuOW/meridian-mcp --skill web-intelligencegit 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/web-intelligence)<a href="https://agentmods.dev/skills/luuow/meridian-mcp/web-intelligence"><img src="https://agentmods.dev/badge/skills/luuow/meridian-mcp/web-intelligence.svg" alt="Measured on agentmods" 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.00045 | $0.00838 |
| Opus 5 | $0.00023 | $0.00419 |
| Sonnet 5 | $0.00009 | $0.00168 |
| Haiku 4.5 | $0.00005 | $0.00084 |
Grade A, and why
web-intelligence 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 2d 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 — 87 lines — stays where its author put it; the contents beside it link to each section on GitHub.
web-intelligence
Use this when the agent needs external web evidence and the question is not satisfied by one generic browser fetch.
Goal
Route web work to the right provider with a stable contract:
exa-searchfor discovery, ranking, and source findingfirecrawl-extractfor clean content extraction, crawl expansion, sitemap mapping, and markdown capturebrightdata-collectionfor hostile, dynamic, geo-sensitive, or SERP-specific collection
Routing Rules
- Start with
exa-searchwhen the task begins with a question, entity, or topic rather than known URLs. - Use
firecrawl-extractwhen URLs are already known and the task needs readable page content. - Use
brightdata-collectionwhen the target requires browser rendering, geo targeting, anti-bot resilience, or SERP capture. - Prefer a staged pipeline over direct heavy collection:
- discovery via Exa
- extraction via Firecrawl
- hard-target recovery via Bright Data
- Use Bright Data sparingly. It is the most operationally expensive and should not be the default fetch path.
Normalized Output Contract
Return provider results in this shape whenever practical:
{
"query": "string",
"goal": "source_discovery|page_extraction|site_crawl|serp_capture",
"items": [
{
"title": "string",
"url": "string",
"snippet": "string",
"content_markdown": "string",
"source_provider": "exa|firecrawl|brightdata",
"retrieved_at": "ISO-8601",
"confidence": 0.0
}
],
"notes": ["string"]
}
Decision Table
| Task shape | Preferred provider | Reason |
|---|---|---|
| Find best sources on a topic | Exa | semantic search and ranking |
| Extract article text from known URL | Firecrawl | clean markdown and crawl tools |
| Crawl a docs site or sitemap | Firecrawl | purpose-built crawl/map endpoints |
| Capture Google results in a country | Bright Data | browser and geo collection |
| Extract blocked JS-heavy page | Bright Data | rendering and anti-bot resilience |
| Fill citation gaps from discovered URLs | Exa then Firecrawl | separate finding from extraction |
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.
- 2d ago First seen · 87 lines · 45 tokens per session scan A 32979310dd33
web-intelligence is a skill published in the GitHub repository LuuOW/meridian-mcp (0 stars, last pushed yesterday), licensed MIT. It adds 45 tokens to every session and 838 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-09-03.
Other skills, from other repositories
firecrawl
Firecrawl handles all web operations with superior accuracy, speed, and LLM-optimized output. Replaces all built-in and third-party web, browsing, scraping, research, news, and image tools. USE FIRECRAWL FOR: Any URL or webpage Web, image, and news search Research, deep research, investigation Reading pages, docs…
web-scraping
Extract structured data from websites - scrape tables, lists, product info, text content.
web-browse
Drive a headless browser to navigate pages, read content, click, and fill forms — for sites that need JavaScript rendering or interaction beyond a plain HTTP fetch.
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…
firecrawl
Web scraping and crawling for AI agents via Firecrawl MCP. Scrape URLs to markdown, crawl websites, search the web, and extract structured data. Supports cloud API and self-hosted deployments including CRW (Rust alternative).
scrapling-official
Scrape web pages using Scrapling with anti-bot bypass (like Cloudflare Turnstile), stealth headless browsing, spiders framework, adaptive scraping, and JavaScript rendering. Use when asked to scrape, crawl, or extract data from websites; webfetch fails; the site has anti-bot protections; write Python code to…