Selenix-MCP
MCP server that bridges Claude Desktop with Selenix for browser automation and testing. Enables creating, running, debugging, and managing browser automation tests through natural language via MCP.
README
Selenix MCP Server
Connect Claude Desktop to Selenix via the Model Context Protocol. Chat with Claude to create, run, debug, and manage browser automation tests — just like using the built-in AI Assistant, but powered by Claude.
Prerequisites
- Selenix desktop app installed
- Claude Desktop installed
- Node.js 18 or later
Enable the Bridge in Selenix
Before using any setup method below, enable the bridge inside Selenix:
- Open Selenix
- Go to System Settings (gear icon in the sidebar)
- Scroll to the MCP Server section
- Set Enable MCP Server to Yes
This starts a local bridge server that the MCP server connects to.
Setup
Choose one of the following methods:
Option A: Install via npm (recommended)
npm install -g @selenix/mcp-server
Then find your global npm path:
npm root -g
Open your Claude Desktop config file:
- Windows: Press
Win+R, paste%APPDATA%\Claude\claude_desktop_config.json, press Enter - macOS: Open
~/Library/Application Support/Claude/claude_desktop_config.json
Add the Selenix MCP server, replacing the path with the output from npm root -g:
{
"mcpServers": {
"selenix": {
"command": "node",
"args": ["<npm-root-path>/@selenix/mcp-server/dist/bundle.js"]
}
}
}
Example (Windows with nvm):
{
"mcpServers": {
"selenix": {
"command": "node",
"args": ["C:/Users/YourName/AppData/Local/nvm/v18.20.8/node_modules/@selenix/mcp-server/dist/bundle.js"]
}
}
}
Example (macOS/Linux):
{
"mcpServers": {
"selenix": {
"command": "node",
"args": ["/usr/local/lib/node_modules/@selenix/mcp-server/dist/bundle.js"]
}
}
}
If you already have other MCP servers configured, add "selenix" alongside them inside the existing "mcpServers" object.
Option B: Use the bundled version (no npm required)
If you installed Selenix as a desktop app, the MCP server is already bundled. No need to install anything — just point Claude Desktop to the bundled file.
Find your Selenix install folder and look for resources/mcp-server/index.js, then add to your Claude Desktop config:
{
"mcpServers": {
"selenix": {
"command": "node",
"args": ["C:/path/to/Selenix/resources/mcp-server/index.js"]
}
}
}
Typical Windows path:
C:/Users/YourName/AppData/Local/Programs/Selenix/resources/mcp-server/index.js
Option C: Manual download
- Download
bundle.jsfrom the npm package page or from the releases page - Save it somewhere on your machine (e.g.,
C:/selenix-mcp/bundle.js) - Add to your Claude Desktop config:
{
"mcpServers": {
"selenix": {
"command": "node",
"args": ["C:/selenix-mcp/bundle.js"]
}
}
}
Node.js is still required — the MCP server is a single JavaScript file with no other dependencies.
Verify
Restart Claude Desktop after editing the config. You should see the Selenix tools icon (hammer) in the chat input area.
Try asking Claude:
- "What tests are in my Selenix project?"
- "Create a test that opens google.com and searches for 'selenium automation'"
- "Run the current test and fix any failures"
- "Take a screenshot of the browser"
How It Works
Claude Desktop <--stdio--> MCP Server <--HTTP--> Bridge Server (inside Selenix)
The MCP server translates Claude's tool calls into HTTP requests to a bridge server running inside Selenix. The bridge has full access to Selenix internals — the same capabilities as the built-in AI Assistant.
- The bridge only listens on
127.0.0.1(localhost) — no network exposure - Auth is handled via a bearer token auto-generated each time Selenix starts
- Connection config is stored at
~/.selenix/bridge.jsonand re-read on every call, so restarting Selenix does not require restarting Claude Desktop
Available Tools
Reading & Inspection
| Tool | Description |
|---|---|
get_screenshot |
Capture a screenshot of the browser window |
get_page_html |
Get the page HTML with interactive elements annotated |
get_search_html |
Search page HTML by regex pattern |
get_selected_command_info |
Get DOM context for a command's target element |
get_current_test |
Get all commands in the current test |
get_test_list |
List all tests in the project |
get_test_by_name |
Get a test by its name |
get_command_list |
List all available Selenix commands |
get_command_info |
Get detailed docs for a specific command |
get_project_info |
Get project metadata |
get_active_suite |
Get the active test suite |
get_step_results |
Get pass/fail results from the last test run |
get_logs |
Get recent logs (all types), 20 per page, most recent first. Optional page param for pagination. |
get_workspace_context |
Get a summary of the current workspace |
Writing & Execution
| Tool | Description |
|---|---|
add_commands |
Add commands to a test at a specific position |
run_test |
Run a test and wait for results (up to 2 minutes) |
clear_and_replace_commands |
Replace all commands in a test |
fix_commands |
Apply targeted fixes — update, remove, or insert commands |
Troubleshooting
"Cannot read Selenix bridge config" Selenix isn't running or the MCP Server isn't enabled. Open Selenix → System Settings → set Enable MCP Server to Yes.
"Cannot connect to Selenix bridge" Selenix may have just restarted. Try the request again — the MCP server will automatically pick up the new connection details.
Tools not appearing in Claude Desktop Make sure you restarted Claude Desktop after editing the config file. Verify the config JSON is valid (no trailing commas, correct brackets).
Claude Desktop won't open after config change The config JSON is likely malformed. Open the config file in a text editor, fix the JSON syntax, and try again. Common issues: missing comma between entries, trailing comma after the last entry.
Uninstall
npm uninstall -g @selenix/mcp-server
Then remove the "selenix" entry from your Claude Desktop config file and restart Claude Desktop.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。