selenium-mcp
Provides tools for browser automation using Selenium WebDriver, enabling AI agents to control Chrome and Firefox browsers for tasks like navigation, element interaction, screenshot capture, and network log retrieval.
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., "@selenium-mcpopen google.com and search for MCP servers"
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-selenium
A production-ready MCP (Model Context Protocol) server that exposes Selenium 4 browser automation as MCP tools. Supports Chrome and Firefox with full BiDi (Bidirectional API) event streaming.
Architecture
selenium-mcp/
├── server.py # MCP entrypoint (JSON-RPC 2.0 over stdio)
├── config/
│ ├── settings.py # ENV + YAML config loader (singleton)
│ ├── default.yaml # Default configuration values
│ └── logging_config.py # Structured logging setup
├── driver/
│ ├── factory.py # WebDriver factory (Chrome / Firefox + BiDi)
│ ├── session.py # BrowserSession – wraps a single WebDriver
│ └── session_manager.py # Registry of all active sessions
├── events/
│ ├── dispatcher.py # Async pub/sub event dispatcher (asyncio.Queue)
│ ├── bidi_listeners.py # BiDi WebSocket event listeners
│ └── network_interceptor.py # CDP/BiDi network interception
├── tools/
│ ├── base.py # BaseTool + error-screenshot decorator
│ ├── navigation_tools.py # open_page, navigate_back/forward, get_dom
│ ├── interaction_tools.py# click, type_text, get_text, wait_for
│ ├── script_tools.py # execute_js, screenshot
│ ├── log_tools.py # get_console_logs, get_network_logs, intercept_requests
│ ├── session_tools.py # create_session, close_session, list_sessions
│ └── registry.py # Tool name → callable map + MCP descriptors
└── models/
├── session.py # SessionInfo, BrowserType, SessionStatus
├── events.py # BrowserEvent, ConsoleLogEvent, NetworkRequestEvent, …
├── network.py # NetworkLog, ConsoleLog, InterceptRule, PerformanceMetrics
└── exceptions.py # Custom exception hierarchyLayered design
MCP Client (Claude / any MCP host)
↕ JSON-RPC 2.0 / stdio
server.py (MCPServer)
↕
tools/registry.py → tools/*.py (business logic)
↕
driver/session_manager.py → driver/session.py
↕ ↕
driver/factory.py events/bidi_listeners.py
(WebDriver creation) (BiDi / CDP event capture)
↕ ↕
Selenium 4 WebDriver events/dispatcher.py
(Chrome / Firefox) (async pub/sub)Quick start
Prerequisites
Requirement | Version |
Python | 3.11+ |
Chrome / ChromeDriver | latest stable |
Firefox / GeckoDriver | latest stable (optional) |
Installation
# 1. Clone / enter the project
git clone <repo> selenium-mcp
cd selenium-mcp
# 2. Create a virtual environment
python -m venv .venv
# Windows
.venv\Scripts\activate
# macOS / Linux
source .venv/bin/activate
# 3. Install dependencies
pip install -r requirements.txt
# 4. (Optional) install as editable package
pip install -e .Run the server
# Stdio mode (standard MCP transport)
python server.py
# Or via the installed entry-point
selenium-mcpThe server reads JSON-RPC 2.0 messages from stdin and writes responses to stdout.
Configuration
Configuration is loaded in priority order:
Environment variables (
SMCP_*)YAML file (
SMCP_CONFIG_FILEenv var orconfig/default.yaml)Built-in defaults
Key settings
ENV variable | YAML key | Default | Description |
|
|
| Default browser ( |
|
|
| Run headless |
|
|
| Max concurrent sessions |
|
|
| Enable BiDi WebSocket |
|
|
| Log level |
|
|
| Verbose debug logging |
|
|
| Auto-screenshot on errors |
|
|
| Screenshot output dir |
Custom YAML config
SMCP_CONFIG_FILE=/path/to/my-config.yaml python server.pyExample my-config.yaml:
browser:
default: firefox
headless: false
max_sessions: 3
bidi:
enabled: true
screenshot:
on_error: true
directory: /tmp/mcp-screenshotsMCP Tools reference
Session management
Tool | Description | Key params |
| Open a new browser |
|
| Close a session |
|
| List active sessions | — |
| Get session metadata |
|
Navigation
Tool | Description | Key params |
| Navigate to URL |
|
| History back | — |
| History forward | — |
| Full page HTML | — |
Element interaction
Tool | Description | Key params |
| Click a CSS selector |
|
| Type into an input |
|
| Get element text |
|
| Wait until visible |
|
| Smart DOM-stability wait |
|
Script & media
Tool | Description | Key params |
| Run JavaScript |
|
| Capture viewport (base64 PNG) | — |
Logs & network
Tool | Description | Key params |
| Browser console entries | — |
| Network request/response log | — |
| Page timing data | — |
| Register URL intercept rule |
|
Connecting to MCP clients
Via uvx (recommended — zero install)
uvx mcp_seleniumVia pip
pip install mcp_selenium
selenium-mcpLocal development (uv run)
git clone https://github.com/SCV-Consultants/selenium-mcp.git
cd selenium-mcp
uv run selenium-mcpClaude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"selenium": {
"command": "uvx",
"args": ["mcp_selenium"],
"env": {
"SMCP_HEADLESS": "false",
"SMCP_BROWSER": "chrome"
}
}
}
}Antigravity / Gemini
Add to your MCP config (mcp_config.json):
{
"mcpServers": {
"selenium": {
"command": "uvx",
"args": ["mcp_selenium"],
"env": {
"SMCP_HEADLESS": "false",
"SMCP_BROWSER": "chrome"
}
}
}
}For local development, use uv run instead:
{
"mcpServers": {
"selenium": {
"command": "uv",
"args": ["run", "--directory", "/path/to/selenium-mcp", "selenium-mcp"],
"env": {
"SMCP_HEADLESS": "false",
"SMCP_BROWSER": "chrome"
}
}
}
}Claude CLI
claude mcp add selenium -- uvx mcp_seleniumInstall via Smithery
npx -y @smithery/cli install mcp_selenium --client claudeBiDi / Event system
When bidi.enabled: true the server attaches BiDi WebSocket listeners to each session:
Console events –
console.log,console.error, etc. are captured and stored per-session. Retrieved viaget_console_logs.JS errors – JavaScript runtime errors are captured as
error-level console entries.Network events – CDP
Network.enable(Chrome) captures request/response data. Retrieved viaget_network_logs.Event dispatcher – All events flow through an
asyncio.Queue-backed pub/sub hub (events/dispatcher.py). Custom async handlers can be registered per event type for real-time streaming use cases.
Error handling
All tools wrap failures in a typed exception hierarchy:
Exception | Trigger |
| Invalid |
| Too many concurrent sessions |
| CSS selector matched nothing |
| Element not clickable/typeable |
|
|
| JavaScript threw or timed out |
|
|
| CDP interception setup failed |
| BiDi requested but unavailable |
When screenshot.on_error: true, a PNG is saved to screenshot.directory automatically on any SeleniumMCPError.
Development
# Lint
ruff check .
# Type check
mypy .
# Tests
pytest tests/ -vRetry mechanism
All element interactions use an internal _retry() helper that retries on StaleElementReferenceException and transient WebDriverException. Configurable via:
retry:
max_attempts: 3
backoff_seconds: 1.0Maintenance
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
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/SCV-Consultants/selenium-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server