mcp-web-agent
A token-efficient web browsing, scraping, and crawling MCP server that provides tools for fetching pages as clean markdown or schema-based JSON, verifying content, monitoring changes, and interacting with web pages via a persistent browser pool, complete with SSRF protection and rate limiting.
README
webmesh-mcp
A token-economical web browsing, scraping, and crawling suite delivered as a standard MCP server. Any MCP-capable agent (Claude, Cursor, Cline, etc.) can use it as ordinary tools with no bespoke integration.
Why this is cheaper than a full browser loop
| Strategy | Saving |
|---|---|
| Tiered fetching — static HTTP first, browser only when HTML is thin | Skips Chromium entirely for the majority of pages |
| Markdown output, not raw HTML — noise/nav/ads stripped server-side | 300 KB page → ~8 KB of clean markdown |
| Schema extraction — field → CSS selector returns only the values you asked for | No markdown conversion, no LLM reasoning |
Boolean verification — web_check / web_diff never send back full page content |
pass: true + 200-char evidence snippet |
ARIA snapshot over screenshot — web_interact returns the accessibility tree |
Image tokens only when you explicitly ask |
| Persistent browser pool — one Chromium process per server lifetime | ~1-2 s launch cost paid once, not per call |
| robots.txt + rate limiting — per-host queues and rule caching | Polite crawling without throttling your agent |
Tools
| Tool | What it does | Browser needed? |
|---|---|---|
web_scrape |
Fetch a URL → clean markdown or schema-based JSON | Only if JS-rendered |
web_check |
Assert text/element present or absent → pass: bool + evidence |
Only if JS-rendered |
web_diff |
Has this page changed since last check? → changed: bool + snippet |
Only if JS-rendered |
web_interact |
Click / fill / select / press / waitFor sequence → ARIA snapshot | Always |
web_session_close |
Delete persisted cookies for a sessionId |
No |
web_crawl |
BFS crawl from a seed URL → titles, links, excerpts, cached markdown | Only if JS-rendered |
web_crawl_get_page |
Retrieve full markdown cached by a prior web_crawl call |
No |
Installation
npm install -g webmesh-mcp
# or use directly with npx (no global install needed):
npx webmesh-mcp
Chromium (optional — only needed for JS-rendered pages)
webmesh-mcp uses playwright-core
and does not bundle a browser. You have three options:
A) Install Playwright's managed Chromium (simplest):
npx playwright install chromium
B) Use your system Chrome / Edge — set executablePath in your MCP config (see below).
C) Connect to a running browser — Playwright supports CDP attach; pass --cdp-endpoint
flags in args if you want to hook into an already-running instance.
Static pages (most blogs, docs, GitHub, npm, etc.) never trigger the browser path at all.
Connecting to your agent
Add to your MCP config (e.g. ~/.claude/claude_desktop_config.json, .cursor/mcp.json, etc.):
{
"mcpServers": {
"web-agent": {
"command": "npx",
"args": ["webmesh-mcp"]
}
}
}
Or, if you prefer to run from source:
{
"mcpServers": {
"web-agent": {
"command": "npx",
"args": ["tsx", "/absolute/path/to/webmesh-mcp/src/index.ts"]
}
}
}
Agent Skill Integration
This repository ships with a pre-configured Agent Skill in skills/web-agent/SKILL.md.
It provides AI coding assistants (Claude Code, Antigravity, Cursor, Windsurf, Gemini CLI, etc.) with a complete decision tree, trigger keywords, and parameter guidance for using webmesh-mcp tools token-efficiently.
How to use the skill in your project
Copy or symlink the skills/ folder into your AI assistant's skills directory:
- Claude / Antigravity / Gemini CLI: Place in
.agents/skills/web-agent/SKILL.mdor~/.gemini/config/skills/web-agent/SKILL.md - Cursor: Copy contents to
.cursor/rules/web-agent.mdc - Windsurf: Copy contents to
.windsurfrules
Tool reference
web_scrape
| Parameter | Type | Default | Description |
|---|---|---|---|
url |
string (URL) |
— | Page to fetch |
format |
"markdown" | "json" |
"markdown" |
Output format |
schema |
Record<string, string> |
— | {field: cssSelector} — required when format="json" |
selector |
string |
— | Scope extraction to a CSS subtree |
forceBrowser |
boolean |
false |
Skip static tier, always use Chromium |
ignoreRobots |
boolean |
false |
Bypass robots.txt rules |
web_check
| Parameter | Type | Default | Description |
|---|---|---|---|
url |
string (URL) |
— | Page to check |
assertion |
enum | — | contains, not_contains, selector_exists, selector_not_exists, text_equals |
value |
string |
— | Text or CSS selector |
selector |
string |
— | Scope text search to subtree |
forceBrowser |
boolean |
false |
|
ignoreRobots |
boolean |
false |
web_diff
| Parameter | Type | Default | Description |
|---|---|---|---|
url |
string (URL) |
— | Page to monitor |
selector |
string |
— | Scope watch to subtree (e.g. .price) |
forceBrowser |
boolean |
false |
|
ignoreRobots |
boolean |
false |
Returns changed: null on the first call (nothing to compare against),
true/false on subsequent calls.
web_interact
| Parameter | Type | Default | Description |
|---|---|---|---|
url |
string (URL) |
— | Starting URL |
actions |
Action[] |
— | Sequence of browser actions |
resultSelector |
string |
— | Scope returned ARIA snapshot |
screenshot |
boolean |
false |
Return base64 PNG (costs image tokens) |
sessionId |
string |
— | Persist cookies/storage across calls |
ignoreRobots |
boolean |
false |
Action shape:
{ type: "click" | "fill" | "select" | "press" | "waitFor", selector?: string, value?: string, timeoutMs?: number }
web_session_close
| Parameter | Type | Description |
|---|---|---|
sessionId |
string |
Session to delete |
web_crawl
| Parameter | Type | Default | Description |
|---|---|---|---|
startUrl |
string (URL) |
— | Seed URL |
maxDepth |
number |
2 |
Max link depth (0 = seed only) |
maxPages |
number |
30 |
Hard cap on pages visited |
sameHostOnly |
boolean |
true |
Restrict to same hostname |
includePatterns |
string[] |
— | Pathname globs URLs must match, e.g. "/docs/*" |
excludePatterns |
string[] |
— | Pathname globs URLs must NOT match |
contentDepth |
"none" | "summary" | "full" |
"summary" |
Output verbosity |
ignoreRobots |
boolean |
false |
Full markdown for every visited page is cached in SQLite for web_crawl_get_page.
web_crawl_get_page
| Parameter | Type | Description |
|---|---|---|
url |
string (URL) |
Previously crawled URL |
Environment variables
| Variable | Default | Description |
|---|---|---|
MCP_WEB_AGENT_DATA_DIR |
<cwd>/.webmesh-mcp |
Root directory for cache DB and session files |
Both the SQLite watch/crawl cache (cache/watch.sqlite) and session state files
(sessions/) live under MCP_WEB_AGENT_DATA_DIR. Override it to control where
runtime data is stored.
Security
SSRF protection
All outbound fetches — static HTTP, browser navigation, and crawl link-following — are validated against a blocklist before any network connection is made. Requests to the following are rejected:
- Loopback addresses (
127.x.x.x,::1,localhost) - Private RFC-1918 ranges (
10.x,172.16–31.x,192.168.x) - Link-local and cloud metadata addresses (
169.254.x.x, including the AWS/GCP/Azure instance metadata endpoint) - Multicast and reserved ranges (
224.xand above) - Non-HTTP/HTTPS schemes
This matters because web_crawl follows links automatically, and scraped page content can contain prompt-injection attempts that try to redirect the next fetch to an internal address. The guard is applied at every fetch entry point so ignoreRobots: true does not bypass it.
DNS rebinding caveat: The guard resolves hostnames and checks the returned IPs, but the actual TCP connection is made moments later by fetch/Playwright using their own DNS resolution. A determined attacker with control of a DNS record could exploit this window. This is the known residual risk; full mitigation requires IP pinning at the HTTP-client level and is a planned follow-up.
Architecture
index.ts (MCP server, stdio transport)
├── tools/scrape.ts — web_scrape
├── tools/check.ts — web_check
├── tools/diff.ts — web_diff
├── tools/interact.ts — web_interact
├── tools/crawl.ts — web_crawl
├── tools/crawlGetPage.ts — web_crawl_get_page
├── tieredFetch.ts — static HTTP → browser escalation
├── browserPool.ts — singleton Chromium process (playwright-core)
├── ssrfGuard.ts — SSRF protection (blocks private/reserved addresses)
├── extract.ts — HTML → clean markdown / plain text / schema JSON
├── hostGate.ts — robots.txt parser + per-host rate-limiting queue
├── sessions.ts — disk-backed storageState persistence
├── cache.ts — SQLite: watch hashes + crawled page markdown
└── constants.ts — shared USER_AGENT, DATA_DIR
Development
git clone https://github.com/creatorpiyush/webmesh-mcp
cd webmesh-mcp
npm install
npx playwright install chromium # optional, for browser-tier testing
npm run dev # run MCP server in dev mode (tsx, no compile step)
npm run demo -- https://example.com
npm test # run the full integration test suite
npm run typecheck # tsc --noEmit, no output files
npm run format # format code with prettier
npm run build # compile to dist/
License
MIT — see LICENSE.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.