Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"selenix": {
"args": [
"<npm-root-path>/@selenix/mcp-server/dist/bundle.js"
],
"command": "node"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
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.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@selenix/mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @selenix/mcp-server against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in browser / developer-tools
Browser automation with Puppeteer for web scraping and testing
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
MCP Security Weekly
Get CVE alerts and security updates for io.github.markmircea/Selenix-MCP-Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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.
Before using any setup method below, enable the bridge inside Selenix:
This starts a local bridge server that the MCP server connects to.
Choose one of the following methods:
npm install -g @selenix/mcp-server
Then find your global npm path:
npm root -g
Open your Claude Desktop config file:
Win+R, paste %APPDATA%\Claude\claude_desktop_config.json, press Enter~/Library/Application Support/Claude/claude_desktop_config.jsonAdd 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.
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
bundle.js from the npm package page or from the releases pageC:/selenix-mcp/bundle.js){
"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.
Restart Claude Desktop after editing the config. You should see the Selenix tools icon (hammer) in the chat input area.
Try asking Claude:
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 Sele