Chrome MCP Server
@jverre
About Chrome MCP Server
MCP server to interact with Chrome
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"chrome-mcp-server": {
"command": "uv",
"args": [
"run",
"uvicorn",
"demo_implementation.main:app",
"--reload"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is Chrome MCP Server?
Chrome MCP Server is an implementation of the Model Context Protocol (MCP) designed to interact with Chrome. It was built as a learning exercise to understand the MCP protocol and to provide a server that can be used in Cursor to take screenshots of a page and validate implementation.
How to use Chrome MCP Server?
For the demo implementation, run uv run uvicorn demo_implementation.main:app --reload and connect via the MCP inspector at http://0.0.0.0:8000. For the robust implementation (which uses the MCP Python SDK), start the server with mcp run app/main.py --transport sse and then use the MCP inspector.
Key features of Chrome MCP Server
- Provides an MCP implementation independent of Anthropic’s library.
- Supports taking screenshots of a webpage.
- Allows validation of implementation in Cursor.
- Includes a demo implementation with initialization over SSE and POST endpoints.
- Offers a more robust implementation using the MCP Python SDK.
Use cases of Chrome MCP Server
- Taking screenshots of pages for visual verification.
- Validating implementation in Cursor during development.
- Learning the MCP protocol through a hands‑on example.
FAQ from Chrome MCP Server
Is Chrome MCP Server a reference implementation of the MCP protocol?
No, it is not a reference implementation. It was built as a learning exercise to understand the protocol.
What are the limitations of the demo implementation?
The demo implementation has several limitations, including lack of error handling and inadequate cleanup of sessions.
How does the initialization process work in the demo implementation?
Initialization is done in three steps: 1) an initial call to /sse to get the session URI, 2) the client sends an initialize message, and 3) the client sends a notifications/initialized message.
What transport does the robust implementation use?
The robust implementation uses SSE (Server‑Sent Events) transport.
More Other MCP servers
Servers
modelcontextprotocolModel Context Protocol Servers
FastMCP v2 🚀
jlowin🚀 The fast, Pythonic way to build MCP servers and clients.
Inbox Zero AI
elie222The world's best AI personal assistant for email. Open source app to help you reach inbox zero fast.

EverArt
modelcontextprotocolModel Context Protocol Servers
Activepieces
activepiecesAI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Comments