WaveXisMCP MCP Server

220 browser automation tools for Chrome, Edge, and Firefox via CDP + BiDi. 100% Python.

Remote serverstreamable-httpPython

What is the WaveXisMCP MCP server?

WaveXisMCP MCP server exists for a simple reason — assistants are far more useful when they can act on WaveXisMCP directly instead of describing what you should do. 220 browser automation tools for Chrome, Edge, and Firefox via CDP + BiDi. 100% Python.

What you get

What the assistant can call

Once WaveXisMCP is connected, these are the calls the assistant has available:

  • Multi — action YAML** — chain navigate → click → fill → screenshot in a single tool call
  • Tool — A single browser operation (screenshot, eval, click, etc.) exposed as an MCP tool that any LLM client can call
  • Session — A persistent browser instance. Open a session, chain multiple tool calls, close when done. Avoids the overhead of launching a browser per action
  • Browser — Google Chrome, Microsoft Edge, or any Chromium/Chrome-based browser
  • navigatehttps://example.com
  • screenshot — full_page: true
  • eval — document.title
  • click — "#login"
  • type — selector: "#username"
  • wavexis — //session/{id}/url — current page URL
  • cdpwave — low-level async Python library for the Chrome DevTools Protocol. Direct WebSocket to Chrome/Edge. No driver binary needed
  • bidiwave — low-level async Python library for the WebDriver BiDi protocol (W3C standard). Works with Firefox, Chrome, and Edge

Configuration and credentials

  • Python: 3.11, 3.12, or 3.13 - Browser: Google Chrome, Microsoft Edge, or any Chromium/Chrome-based browser - BiDi backend (optional): ChromeDriver/EdgeDriver for Chrome, or geckodriver for Firefox

Setting it up

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

Choosing this one

Plenty of browser automation servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. WaveXisMCP's toolset — Multi, Tool, Session and 11 more — is a fair guide to whether it matches your workflow. It is maintained by MathiasPaulenko; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Before you rely on it

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch WaveXisMCP.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the wavexismcp mcp server does with a few real requests.

Available tools

ToolWhat it does
Multiaction YAML** — chain navigate → click → fill → screenshot in a single tool call
ToolA single browser operation (screenshot, eval, click, etc.) exposed as an MCP tool that any LLM client can call.
SessionA persistent browser instance. Open a session, chain multiple tool calls, close when done. Avoids the overhead of launching a browser per action.
BrowserGoogle Chrome, Microsoft Edge, or any Chromium/Chrome-based browser
navigatehttps://example.com
screenshotfull_page: true
evaldocument.title
click"#login"
typeselector: "#username"
wavexis//session/{id}/url — current page URL
cdpwavelow-level async Python library for the Chrome DevTools Protocol. Direct WebSocket to Chrome/Edge. No driver binary needed.
bidiwavelow-level async Python library for the WebDriver BiDi protocol (W3C standard). Works with Firefox, Chrome, and Edge.
WaveXisMCPMCP server wrapping wavexis. Exposes each backend method as an MCP tool with Pydantic v2 input validation, JSON responses, and capability tier filtering.
TierFlag

How to install the WaveXisMCP MCP server

{
  "mcpServers": {
    "wavexis": {
      "command": "uvx",
      "args": ["wavexis-mcp", "--caps", "all"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Python: 3.11, 3.12, or 3.13 - Browser: Google Chrome, Microsoft Edge, or any Chromium/Chrome-based browser - BiDi backend (optional): ChromeDriver/EdgeDriver for Chrome, or geckodriver for Firefox

Example prompts to try

  • Use WaveXisMCP to Multi.
  • Use WaveXisMCP to Tool.
  • Use WaveXisMCP to Session.

Frequently asked questions

It connects WaveXisMCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Multi, Tool, Session, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with WaveXisMCP directly.