pagelens
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., "@pagelensscreenshot the page and get console logs"
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.
PageLens
MCP server that gives AI coding agents visual feedback on frontend apps. One command, no config — your AI agent can now see your app, click buttons, read console errors, and diff visual changes.
npx pagelens http://localhost:3000The Problem
When using AI coding agents (Claude Code, Cursor, Windsurf) for frontend development, the agent is blind. It can edit code but can't see what the app looks like. This creates a painful manual loop:
Agent makes a code change
You look at the browser
You describe the visual issue in words, or screenshot and drag into chat
You copy console errors manually
Repeat dozens of times per session
PageLens eliminates this loop entirely.
Related MCP server: Curupira
How It Works
Your app (localhost:3000)
|
Headless Chrome (Puppeteer)
|
PageLens MCP Server
|
Claude Code / Cursor / WindsurfPageLens launches a headless browser pointed at your dev server, collects console logs and network errors passively, and exposes tools that any MCP-compatible AI agent can call — screenshots, clicking, typing, DOM inspection, visual diffing — without you doing anything manually.
Why PageLens over Playwright MCP / Browser MCP?
General-purpose browser automation MCPs expose low-level primitives — you get evaluate JavaScript, take screenshot, click element as separate, disconnected actions. PageLens is purpose-built for the AI frontend development loop, which changes the design in ways that matter:
PageLens | General browser MCPs | |
Setup |
| Requires browser launch management, connection handling |
Console/network errors | Collected passively in the background. Agent checks whenever it wants. | Agent must actively poll or set up listeners. Errors between tool calls are lost. |
Interaction feedback | Every | Agent must remember to take a screenshot after each action |
Visual regression | Built-in | Not available. Agent would need to screenshot, store, compare manually. |
Visual quality review |
| No equivalent. Agents tend to superficially confirm "looks good" without guidance. |
Live debugging |
| Typically headless-only or requires restart |
Multi-route audit |
| Agent must navigate and screenshot each route individually |
PageLens doesn't try to be a general browser automation framework. It does one thing — give your AI coding agent eyes on your frontend — and removes every manual step from that loop.
Quick Start
1. Start your dev server
npm run dev
# App running at http://localhost:51732. Add PageLens to your MCP config
Note: PageLens isn't on npm yet. See the Development section to install from source, then use the config below with the local path.
Claude Code (.mcp.json in project root):
{
"mcpServers": {
"pagelens": {
"command": "node",
"args": ["/path/to/PageLens/dist/index.js", "http://localhost:5173"]
}
}
}Cursor (.cursor/mcp.json):
{
"mcpServers": {
"pagelens": {
"command": "node",
"args": ["/path/to/PageLens/dist/index.js", "http://localhost:5173"]
}
}
}3. Start your agent
That's it. The agent now has access to all PageLens tools. Ask it to "take a screenshot of my app" or "check for console errors" and it just works.
Tools
Observation
Tool | Description |
| Capture the current page as PNG. Optional |
| Screenshot a specific DOM element by CSS selector. |
| Returns all console output (log, warn, error) since last call. Clears buffer after returning. |
| Returns all failed network requests since last call. Clears buffer after returning. |
| Screenshot with a guided checklist prompting the agent to critically assess content accuracy, layout, contrast, and polish — not just confirm things render. |
Interaction
Tool | Description |
| Click an element by selector. Returns screenshot after click. |
| Type text into an input field. Optional |
| Scroll the page or a specific element up/down by a given number of pixels. Returns screenshot. |
| Hover over an element by selector to trigger tooltips, dropdowns, or hover styles. Returns screenshot. |
| Select an option from a |
| Go to a URL or path. Returns screenshot of the new page. |
| Resize to a preset ( |
| Get computed styles, classes, children, and bounding box for an element. |
| Returns the current URL, page title, viewport size, scroll position, and document dimensions. |
Diffing
Tool | Description |
| Compare current page against a stored baseline. First call captures baseline, subsequent calls return a diff image with changed pixels highlighted and a percentage summary. |
| Screenshot multiple routes in one call. Returns labeled images for each route. |
Debug
Tool | Description |
| Switch between headless and visible browser. When visible, a Chrome window appears so you can watch the agent interact with your app in real time. |
CLI Options
pagelens <url> [options]
Options:
--no-headless Show the browser window
--viewport <preset> Initial viewport: mobile | tablet | desktop (default: desktop)
-h, --help Show helpArchitecture
src/
├── index.ts # CLI entry point, arg parsing
├── server.ts # MCP server, tool registration
├── browser.ts # Puppeteer lifecycle, passive log/error collection
├── tools/
│ ├── screenshot.ts # screenshot, screenshot_element, multi_route_screenshot
│ ├── console.ts # console_logs, network_errors
│ ├── interact.ts # click, type, navigate, set_viewport
│ ├── inspect.ts # dom_inspect
│ └── diff.ts # visual_diff
└── utils/
└── viewport-presets.tsKey design decisions:
Lazy connection — The MCP server starts immediately. Navigation to your app happens on the first tool call, so PageLens never crashes if your dev server isn't running yet.
Passive collection — Console logs and network errors are captured in ring buffers from the moment the browser launches. The agent checks when it wants to, not when events happen.
Screenshots after every interaction —
click,type,navigate, andset_viewportall return a screenshot so the agent always sees the result of what it did.Baseline storage — Visual diff baselines are stored in memory per route. No filesystem setup needed.
Development
git clone https://github.com/amoghmanral/pagelens.git
cd pagelens
npm install
npm run buildTo test locally with Claude Code:
claude mcp add pagelens -- node /path/to/PageLens/dist/index.js http://localhost:3000Tech Stack
TypeScript — Type-safe tool handlers and MCP integration
Puppeteer — Headless Chrome automation (bundles Chromium)
@modelcontextprotocol/sdk — Official MCP server SDK
pixelmatch + pngjs — Pixel-level image comparison for visual diffing
License
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/amoghmanral/pagelens-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server