Skip to main content
Glama
creatorpiyush

mcp-web-agent

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 verificationweb_check / web_diff never send back full page content

pass: true + 200-char evidence snippet

ARIA snapshot over screenshotweb_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


Related MCP server: krwl3r

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.md or ~/.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.x and 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.

Install Server
A
license - permissive license
A
quality
B
maintenance

Maintenance

Maintainers
Response time
0dRelease cycle
2Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    An MCP server that fetches web pages and extracts clean, AI-friendly Markdown content using Mozilla Readability. It provides secure web access for LLMs with built-in SSRF protection and automated content cleaning for improved context retrieval and summarization.
    1
    65
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    MCP server for web scraping and browser automation, enabling AI agents to extract clean, token-efficient content from web pages.
    1
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    A secure web scraping MCP server for AI agents that fetches pages with token budgeting, robots.txt compliance, and injection warnings, providing parsed content like markdown, metadata, and structured data.
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    MCP server for mdbrowse that enables agents to fetch, search, and browse web pages as clean, token-efficient markdown with provenance, caching, and structured navigation.
    16
    MIT

View all related MCP servers

Related MCP Connectors

  • Web tools for agents: fetch URL as markdown (free MCP) + x402 scrape, links, AI JSON, snapshot.

  • Read a URL as clean markdown, screenshot a website, url to PDF. Web access for agents, no signup.

  • Reliable web access for AI agents: smart HTTP, rotating proxies, and full-browser rendering.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/creatorpiyush/webmesh-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server