Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables monitoring web pages for changes using Playwright, storing snapshots in SQLite, and optionally analyzing changes with an LLM for business impact assessment.

README.md

mcp-page-monitor

MCP server for monitoring web page changes. Uses Playwright to capture page content, SQLite for snapshot storage, and optional LLM integration for business impact analysis.

Available on npm and the MCPize marketplace.

Tools

monitor_page

Register a URL to watch for changes. Takes an initial snapshot immediately.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | url | string | yes | URL to monitor | | label | string | no | Human-readable label | | selector | string | no | CSS selector to monitor a specific element | | check_interval_minutes | number | no | Check frequency (1–10080). Default: 60 |

check_changes

Browse a monitored URL with Playwright, capture current content, and diff against the stored snapshot.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | url | string | yes | URL to check (must be registered first) |

Returns { changed, diff, timestamp } — diff includes added/removed line counts, changed sections, and a unified diff string.

analyze_change

Analyze a page diff using an LLM to summarize what changed and assess business impact.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | url | string | yes | URL whose changes to analyze | | diff_text | string | no | Provide diff text directly instead of computing from snapshots |

Returns { summary, impact, severity } — severity is low | medium | high | critical.

Falls back to deterministic analysis (pattern matching for pricing changes, errors, policy updates, etc.) when no LLM endpoint is configured.

list_monitored_pages

List all URLs currently being monitored.

remove_monitored_page

Stop monitoring a URL.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | url | string | yes | URL to stop monitoring |

Installation

npm install mcp-page-monitor

Or run directly:

npx mcp-page-monitor

Requirements

  • Node.js 22+
  • Chromium browser (Playwright uses it for page rendering)

Install Playwright browsers if needed:

npx playwright install chromium

Configuration

Claude Desktop / Cursor / MCP Client

Add to your MCP client config:

{
  "mcpServers": {
    "page-monitor": {
      "command": "npx",
      "args": ["mcp-page-monitor"],
      "env": {
        "PLAYWRIGHT_CHROMIUM_PATH": "/usr/bin/chromium-browser"
      }
    }
  }
}

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | PAGE_MONITOR_DB_PATH | ~/.mcp-page-monitor/page-monitor.db | SQLite database location | | PLAYWRIGHT_CHROMIUM_PATH | /usr/bin/chromium-browser | Path to Chromium executable | | CHROME_PATH | — | Fallback browser path | | PAGE_TIMEOUT_MS | 30000 | Page navigation timeout | | LLM_ENDPOINT | — | LLM API endpoint for analyze_change (e.g. OpenAI-compatible /v1/chat/completions) | | LLM_API_KEY | — | Bearer token for LLM endpoint | | LLM_MODEL_ID | gpt-4o-mini | Model to use for analysis | | LLM_SOURCE_SYSTEM | mcp-page-monitor | Source identifier sent to LLM |

How It Works

  1. Register a page with monitor_page — takes an initial snapshot via headless Chromium
  2. Check for changes with check_changes — fetches current content and computes a line-level diff (LCS-based) against the last snapshot
  3. Analyze changes with analyze_change — sends the diff to an LLM for business impact assessment, or uses built-in heuristics (pricing detection, error detection, policy changes) when no LLM is available

All snapshots are stored in a local SQLite database with WAL mode enabled for concurrent access.

Development

git clone https://github.com/deialedin/mcp-page-monitor
cd mcp-page-monitor
npm install
npm run build       # Compile TypeScript
npm test            # Run 26 tests
npm run dev         # Watch mode with tsx

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Databases servers.