mcp-page-monitor
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-page-monitorMonitor https://example.com for changes"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 |
| string | yes | URL to monitor |
| string | no | Human-readable label |
| string | no | CSS selector to monitor a specific element |
| 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 |
| 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 |
| string | yes | URL whose changes to analyze |
| 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 |
| string | yes | URL to stop monitoring |
Related MCP server: Playwright HTML Render
Installation
npm install mcp-page-monitorOr run directly:
npx mcp-page-monitorRequirements
Node.js 22+
Chromium browser (Playwright uses it for page rendering)
Install Playwright browsers if needed:
npx playwright install chromiumConfiguration
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 |
|
| SQLite database location |
|
| Path to Chromium executable |
| — | Fallback browser path |
|
| Page navigation timeout |
| — | LLM API endpoint for |
| — | Bearer token for LLM endpoint |
|
| Model to use for analysis |
|
| Source identifier sent to LLM |
How It Works
Register a page with
monitor_page— takes an initial snapshot via headless ChromiumCheck for changes with
check_changes— fetches current content and computes a line-level diff (LCS-based) against the last snapshotAnalyze 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 tsxLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/deialedin/mcp-page-monitor'
If you have feedback or need assistance with the MCP directory API, please join our Discord server