local-browser-mcp-server
Enables browser automation (navigation, screenshots, clicking, typing) and AI image generation using Puppeteer and Google Gemini.
README
Local Browser MCP Server
A Model Context Protocol (MCP) server that provides browser automation capabilities using Puppeteer, plus AI image generation using Google Gemini 2.0 Flash. This server allows you to control a local Chrome browser instance, take screenshots, perform interactions like clicking and typing, and generate custom images - perfect for testing websites and creating content with Cursor.
Features
- 🌐 Browser Navigation: Navigate to URLs, go back/forward, refresh pages
- 📸 Screenshots: Capture full page, viewport, or specific element screenshots
- 🖱️ Click Actions: Click on elements using CSS selectors
- ⌨️ Text Input: Type text into input fields and forms
- 📜 Scrolling: Scroll pages in any direction
- ⏳ Wait Operations: Wait for elements to appear
- 📊 Page Info: Get current page title, URL, and viewport information
- 🎨 AI Image Generation: Generate custom images using Google Gemini 2.0 Flash Preview
Installation
-
Clone/Download this repository to your local machine
-
Install dependencies:
npm install -
Build the project:
npm run build -
Set up environment variables (for image generation): Create a
.envfile in the project root:GOOGLE_AI_KEY=your_google_ai_api_key_hereGet your API key from Google AI Studio.
Usage with Cursor
Step 1: Start the HTTP Server
The recommended way to use this MCP server is through HTTP mode to avoid ES module compatibility issues:
npm run start:http
This starts the server on http://localhost:3045 and keeps it running.
Step 2: Configure MCP in Cursor
Create or update your cursor-mcp-config.json file with the following configuration:
{
"mcpServers": {
"local-browser": {
"command": "node",
"args": ["/absolute/path/to/your/project/mcp-http-bridge.js"],
"env": {
"NODE_ENV": "production"
}
}
}
}
Important:
- Replace
/absolute/path/to/your/project/with the actual absolute path to your project directory - The HTTP bridge (
mcp-http-bridge.js) routes MCP requests to the HTTP server - Make sure the HTTP server is running before using the tools in Cursor
Step 3: Restart Cursor
After updating the configuration, restart Cursor to load the new MCP server.
Step 4: Start Using the Tools
Once configured, you can use the following tools in Cursor:
Browser Navigation
navigate_to_url- Navigate to any URLgo_back- Go back in browser historygo_forward- Go forward in browser historyrefresh_page- Refresh the current page
Screenshots & Visual Capture
take_screenshot- Capture screenshots (full page, viewport, or specific elements)
Page Interactions
click_element- Click on elements using CSS selectorstype_text- Type text into input fieldsscroll_page- Scroll the page in any directionwait_for_element- Wait for elements to appear
Page Information
get_page_info- Get current page title, URL, and viewport info
AI Image Generation
generate_image- Generate custom images using Google Gemini 2.0 Flash Preview
Quick Start Example
Here's how to get started quickly:
-
Start the HTTP server:
npm run start:http -
In Cursor, try these commands:
- "Navigate to google.com and take a screenshot"
- "Generate an image of a sunset over mountains"
- "Click on the search button and type 'hello world'"
Example Workflow
Here's a typical workflow when testing a website you've created:
-
Navigate to your local development server:
Use navigate_to_url with "http://localhost:3000" -
Take a screenshot to see the current state:
Use take_screenshot to capture the full page -
Interact with your website:
Use click_element to click buttons Use type_text to fill out forms Use scroll_page to test scrolling behavior -
Capture results:
Use take_screenshot again to see changes
Tool Reference
navigate_to_url
Navigate the browser to a specific URL.
url(required): The URL to navigate to
take_screenshot
Take a screenshot of the current page.
fullPage(optional): Capture full page vs viewport onlyselector(optional): CSS selector to screenshot specific element
click_element
Click on an element specified by CSS selector.
selector(required): CSS selector of element to clickwaitFor(optional): Milliseconds to wait after clicking (default: 1000)
type_text
Type text into an input field.
selector(required): CSS selector of input elementtext(required): Text to typeclear(optional): Clear field before typing (default: true)
wait_for_element
Wait for an element to appear on the page.
selector(required): CSS selector to wait fortimeout(optional): Timeout in milliseconds (default: 5000)
scroll_page
Scroll the page.
direction(required): 'up', 'down', 'top', or 'bottom'amount(optional): Pixels to scroll for up/down (default: 500)
get_page_info
Get information about the current page (title, URL, viewport size).
refresh_page
Refresh the current page.
go_back
Navigate back in browser history.
go_forward
Navigate forward in browser history.
generate_image
Generate custom AI images using Google Gemini 2.0 Flash Preview.
description(required): Text description of the image to generate
Generated images are automatically saved to the generated-images/ directory and can be downloaded via HTTP at http://localhost:3045/download/{filename}.
Development
- Build:
npm run build - Development mode:
npm run dev(watches for changes) - Start:
npm start(visible browser) ornpm run start:headless(background) - HTTP Test Server:
npm run start:http(visible) ornpm run start:http:headless(background)
Browser Behavior
- Visible Mode: Browser window opens so you can see what's happening
- Headless Mode: Browser runs in background (set
MCP_HEADLESS=true) - Separate Profile: Uses
/tmp/chrome-mcp-datato avoid conflicts with your main Chrome - Default viewport: 1280x720 pixels
- Screenshots: Returned as base64-encoded PNG images
Troubleshooting
Browser doesn't launch
- Ensure Chrome is installed on your system
- Check that no other processes are blocking Chrome
- Try restarting the HTTP server:
npm run start:http - Clear Chrome data directory:
rm -rf /private/tmp/chrome-mcp-data
Elements not found
- Verify CSS selectors are correct
- Use browser dev tools to test selectors
- Try waiting for elements to load with
wait_for_element
MCP Tools not available in Cursor
- Ensure the HTTP server is running:
npm run start:http - Check that
cursor-mcp-config.jsonhas the correct absolute path - Restart Cursor after configuration changes
- Verify the HTTP bridge file exists:
mcp-http-bridge.js
Image generation not working
- Ensure
GOOGLE_AI_KEYis set in your.envfile - Get your API key from Google AI Studio
- Check that the HTTP server is running (image generation requires HTTP mode)
Permission issues
- Ensure the MCP server has permission to launch Chrome
- Check file permissions on the built JavaScript files
- On macOS, you may need to allow Chrome in System Preferences > Security & Privacy
Security Notes
- This server launches a real browser with full system access
- Only use with trusted websites and content
- The browser runs with some security features disabled for automation
- Always run in a controlled environment
License
MIT License - see LICENSE file for details.
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.