Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"roxybrowser-openapi": {
"env": {
"ROXY_API_KEY": "YOUR API KEY",
"ROXY_API_HOST": "http://127.0.0.1:50000"
},
"args": [
"@roxybrowser/openapi@latest"
],
"command": "npx"
},
"roxybrowser-playwright-mcp": {
"args": [
"@roxybrowser/playwright-mcp@latest"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server for RoxyBrowser that provides AI assistants with the ability to manage browser instances and obtain Chrome DevTools Protocol (CDP) WebSocket endpoints for automation.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@roxybrowser/openapi' 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 @roxybrowser/openapi 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
Multi-engine MCP server, CLI, and local daemon for agent web search and content retrieval — skill-guided workflows, no API keys.
MCP server for Firecrawl — search, scrape, and interact with the web. Supports both cloud and self-hosted instances. Features include web search, scraping, page interaction, batch processing, and LLM-powered content analysis.
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
The Apify MCP server enables your AI agents to extract data from social media, search engines, maps, e-commerce sites, or any other website using thousands of ready-made scrapers, crawlers, and automation tools available on the Apify Store.
MCP Security Weekly
Get CVE alerts and security updates for Roxybrowser Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server for RoxyBrowser that provides AI assistants with the ability to manage browser instances and obtain Chrome DevTools Protocol (CDP) WebSocket endpoints for automation.
Add both RoxyBrowser OpenAPI and RoxyBrowser Playwright MCP to your MCP client configuration:
Claude Desktop / VS Code / Cursor:
{
"mcpServers": {
"roxybrowser-openapi": {
"command": "npx",
"args": ["@roxybrowser/openapi@latest"],
"env": {
"ROXY_API_KEY": "YOUR API KEY",
"ROXY_API_HOST": "http://127.0.0.1:50000"
}
},
"roxybrowser-playwright-mcp": {
"command": "npx",
"args": ["@roxybrowser/playwright-mcp@latest"]
}
}
}
Note: Replace YOUR API KEY and YOUR API HOST with your actual RoxyBrowser credentials.
This package supports three ways to run: CLI, in-process (programmatic), and as a library for custom integration.
Start the MCP server from the command line. Ideal for MCP clients that spawn the server as a subprocess.
# After npm install -g @roxybrowser/openapi
roxy-browser-mcp
# Or with npx (no global install)
npx @roxybrowser/openapi
# After cloning and building
npm run build && node lib/index.js
CLI options (config: CLI args > environment variables > defaults):
-V, --version — Show version-h, --help — Show usage-H, --api-host <url> — RoxyBrowser API base URL (default: http://127.0.0.1:50000)-k, --api-key <key> — API key (required unless set via env)-t, --timeout <ms> — Request timeout in milliseconds (default: 30000)Environment variables (used when an option is not passed): ROXY_API_HOST, ROXY_API_KEY, ROXY_TIMEOUT.
Examples:
roxy-browser-mcp --api-key "your-key"
roxy-browser-mcp -k "your-key" -H http://127.0.0.1:50000
ROXY_API_KEY=your-key roxy-browser-mcp
Run the MCP server inside your own Node process (same process, stdio transport). Useful when you want to start the server from code instead of a separate CLI process.
import { runServer } from '@roxybrowser/openapi'
// Starts MCP server on stdio; runs until process exits
await runServer()
Or use the server class for more control:
import { RoxyBrowserMCPServer } from '@roxybrowser/openapi'
const server = new RoxyBrowserMCPServer()
await server.run()
Set env vars (ROXY_API_KEY, ROXY_API_HOST) before calling runServer(); config is read at process start and cannot be changed at runtime.
Use the exported tools and API helpers in your own app: call RoxyBrowser APIs wi