A simple MCP Server for controlling Chrome via Puppeteer
@ratiofu
关于 A simple MCP Server for controlling Chrome via Puppeteer
A simple MCP server for controlling Chrome via Puppeteer
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"puppeteer-control": {
"type": "http",
"url": "http://localhost:7742/sse"
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is A simple MCP Server for controlling Chrome via Puppeteer?
This MCP server connects to a running Chrome instance through its remote debugging port using Puppeteer Core. It acts as a bridge between MCP clients (like Cursor) and Chrome, allowing programmatic control via the Model Context Protocol.
How to use A simple MCP Server for controlling Chrome via Puppeteer?
First, start Chrome with the remote debugging port enabled (e.g., --remote-debugging-port=9222). Then install dependencies with pnpm i and run the server with pnpm run start. Finally, configure Cursor to add a global MCP server pointing to http://localhost:7742/sse.
Key features of A simple MCP Server for controlling Chrome via Puppeteer
- Uses
puppeteer-core(no bundled browser) - Requires an existing Chrome with remote debugging enabled
- Communicates via SSE transport (not Streamable HTTP)
- Designed for use with Cursor IDE
Use cases of A simple MCP Server for controlling Chrome via Puppeteer
- Automating browser actions from an MCP‑compatible client
- Integrating Chrome control into Cursor workflows
- Experimenting with Puppeteer through MCP tools
FAQ from A simple MCP Server for controlling Chrome via Puppeteer
How do I start Chrome for this server?
On macOS, run open -a "Google Chrome" --args --remote-debugging-port=9222. The server expects Chrome to be launched manually with the debugging port.
What dependencies are required?
The project uses puppeteer-core and does not install a browser. You need Node.js, pnpm, and a Chrome/Chromium installation.
How do I connect this server to Cursor?
In Cursor’s MCP settings, add a new global MCP server with the URL http://localhost:7742/sse. The server must be running locally.
Why does the server use SSE instead of Streamable HTTP?
The README explains that Cursor requires SSE support. The TypeScript SDK’s Streamable HTTP example is not compatible; SSE is better documented in the official MCP documentation.
Can I test the server without Cursor?
Yes, you can use the MCP Inspector. With the server already running on SSE, run pnpx @modelcontextprotocol/inspector to explore available tools.
浏览器自动化 分类下的更多 MCP 服务器
BrowserTools MCP
AgentDeskAIMonitor browser logs directly from Cursor and other MCP compatible IDEs.
Fastcrw
usFast, lightweight Firecrawl/Tavily alternative in Rust. Web scraper, crawler & search API with MCP server for AI agents. Drop-in Firecrawl-compatible API (/scrape, /crawl, /search). 2.3x faster than Tavily, 1.5x faster than Firecrawl in 1K-URL benchmarks. 6 MB RAM, single binary.
MCP server w/ Browser Use
JovaniPinkFastAPI server implementing MCP protocol Browser automation via browser-use library.
Fetcher MCP
jae-jaeMCP server for fetch web page content using Playwright headless browser.
评论