operagx-connector-plus
Provides browser interaction tools for Opera GX, including clicking, typing, form filling, option selection, drag-and-drop, scrolling, and element mapping, by attaching to a running Opera GX instance via the Chrome DevTools Protocol.
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., "@operagx-connector-plusClick the search box and type 'operagx-connector-plus'"
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.
operagx-connector-plus
An MCP server that adds real browser interaction — click, type, keyboard,
form-fill, drag, scroll, select — on top of the read-only OperaGX connector
(go-to-page, list-tabs, tab-content, screenshot, close-tab,
history). Run both MCP servers side by side; this one doesn't replace the
original, it fills the gap between "read the page" and "act on it."
Why the Chrome DevTools Protocol, not OS-level input
Two ways exist to make an agent actually click/type in a browser:
OS-level hardware events (
SendInputon Windows,robotjs,xdotool) — simulate input at the operating system, blind to window coordinates, steal the real mouse cursor, need the window focused and on-screen, and need OS accessibility permissions.Chrome DevTools Protocol (
Input.dispatchMouseEvent/Input.dispatchKeyEvent) — simulates input inside the browser's own input pipeline. Indistinguishable from real hardware input to the page (unlikeelement.click()/dispatchEvent()in JS, which skip native browser behavior and are trivially detectable by sites), works in the background, doesn't touch the real OS cursor, and needs no extra OS permissions.
Since Opera GX is Chromium-based, it already speaks CDP. This server uses
playwright-core purely as
a typed CDP client (chromium.connectOverCDP) — no Playwright-managed
browser is launched; it attaches to your existing, already-running Opera GX.
Related MCP server: Opera DevTools MCP
Install
npm install
npm run buildRequires Node.js 18+.
Setup
Launch Opera GX with a remote debugging port. Add a flag to wherever you launch it from:
--remote-debugging-port=9222This applies to a shortcut's target, a
Run-at-login entry, or any launcher — seedocs/enabling-cdp.mdfor exact steps on Windows (taskbar pin, Start Menu shortcut, autostart registry entry).Register the server with your MCP client. For the Claude Code CLI, at user scope (available in every project):
claude mcp add operagx-connector-plus -s user \ -e OPERAGX_CDP_URL=http://localhost:9222 \ -- node /absolute/path/to/operagx-connector-plus/dist/index.jsFor other clients, the equivalent JSON config is:
{ "mcpServers": { "operagx-connector-plus": { "command": "node", "args": ["/absolute/path/to/operagx-connector-plus/dist/index.js"], "env": { "OPERAGX_CDP_URL": "http://localhost:9222" } } } }Also register the base OperaGX connector (screenshot, tab-content, go-to-page, ...) — this server is designed to complement it, not replace it. See the section below for the recommended combined workflow.
The interaction loop
This server pairs with the base connector's screenshot tool for visual
grounding ("set-of-marks" style):
operagx_map_elements— scans the DOM for clickable/fillable elements, returns each with a small integerid, role, text, and coordinates, and draws numbered badges on the live page.Call the base connector's
screenshottool — the badges let you visually confirm which numbered id is which element.operagx_click/operagx_type_text/operagx_fill_form/operagx_select_option/operagx_drag_and_drop/ etc., addressed byelementId(preferred), a raw CSSselector, or absolutex/ycoordinates.operagx_clear_annotationswhen done, so badges don't linger in future screenshots.
Tools
Tool | Does | Read-only | Idempotent |
| Enumerate tabs with a stable | ✅ | ✅ |
| Map clickable/fillable elements to numbered ids + coordinates, annotate the page | ✅ | — |
| Remove the numbered overlay badges | — | ✅ |
| Real CDP mouse click (left/right/middle, single/double/triple) | — | — |
| Move the mouse over an element/point | — | ✅ |
| Focus + type real per-character key events | — | — |
| Send a key or chord ( | — | — |
| Fill multiple fields in one call, optional submit key | — | — |
| Choose a | — | ✅ |
| Real mouse-down → move → mouse-up drag | — | — |
| Mouse-wheel scroll, or scroll an element into view | — | — |
| Wait for a selector to reach a state (visible/hidden/attached/detached) | ✅ | ✅ |
Every tool accepts an optional tab selector (tabId, tabIndex, matchUrl,
matchTitle); omitting it defaults to the first open tab. Every tool also
declares MCP annotations (readOnlyHint, destructiveHint, idempotentHint,
openWorldHint) and a structured outputSchema, so clients that support
structuredContent get typed results, not just text.
Evaluations
evaluations/eval.xml has 10 read-only, verifiable
QA pairs for testing whether an LLM can use this server effectively, following
the MCP evaluation guidelines. Since this
server deliberately has no navigation tool (that's the base connector's job),
each question assumes both servers are available, exactly as described above.
Security notes
This server can act on whatever page is open — treat it like giving a script mouse/keyboard access to the browser. Don't point an autonomous agent at a tab with an authenticated session you don't want touched.
There is no
execute-script/arbitrary-JS tool by design, to keep the attack surface to well-defined interaction primitives.CDP is unauthenticated by default on
localhost— don't expose the debugging port beyond localhost/a trusted network. This server binds outbound to whateverOPERAGX_CDP_URLyou configure; it does not open any listening port itself.All inputs are validated with Zod
.strict()schemas before any tool executes.
Development
npm run dev # tsc --watch
npm run build # one-shot build to dist/
npx @modelcontextprotocol/inspector node dist/index.js # interactive testingContributing
See CONTRIBUTING.md.
License
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityFmaintenanceEnables AI agents to directly control your real Chrome browser with full context including login sessions, cookies, and open tabs. It provides tools for page scanning, JavaScript execution, CDP control, screenshots, and physical mouse/keyboard input for authentic browser automation.20239MIT

Opera DevTools MCPofficial
Alicense-qualityAmaintenanceEnables AI coding assistants to control and inspect a browser via DevTools, with additional Opera Neon AI tools for chat, page actions, content generation, and research.804Apache 2.0- Flicense-qualityDmaintenanceEnables AI to control browsers via natural language for web automation, testing, and data scraping. Supports Chrome-based browsers and integrates with any MCP-compatible AI tool.2
- Alicense-qualityDmaintenanceEnables AI agents to fully control Google Chrome: navigate, click, fill forms, inspect DevTools, and manage tabs with parallel execution and session isolation.8MIT
Related MCP Connectors
AI-powered browser automation — navigate, click, fill forms, and extract data from any website.
Automate cloud browsers to navigate websites, interact with elements, and extract structured data.…
Hosted real Google Chrome MCP with per-user persistent state. Navigate, click, type, screenshot.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Zindaar/operagx-connector-plus'
If you have feedback or need assistance with the MCP directory API, please join our Discord server