Babelwrap MCP Server

MCP server for BabelWrap — give AI agents web browsing superpowers.

Local serverstdio

What is the Babelwrap MCP server?

If you already use Babelwrap, the babelwrap mcp server is the piece that lets your assistant work with it directly. MCP server for BabelWrap — give AI agents web browsing superpowers.

What the server does

Works with Claude Desktop, Cursor, Claude Code, and any MCP-compatible client.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • babelwrap_new_session — Create a new browser session
  • babelwrap_close_session — Close a browser session
  • babelwrap_navigate — Navigate to a URL
  • babelwrap_snapshot — Get current page state
  • babelwrap_click — Click an element
  • babelwrap_fill — Fill a form field
  • babelwrap_submit — Submit a form
  • babelwrap_extract — Extract structured data
  • babelwrap_screenshot — Take a screenshot
  • babelwrap_press — Press a keyboard key
  • babelwrap_scroll — Scroll the page
  • babelwrap_hover — Hover over an element

Installation

Installation goes through your MCP client rather than a global install: point it at babelwrap-mcp on PyPI and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Credentials and setup notes

Configuration is passed through the environment: BABELWRAP_API_KEY, BABELWRAP_API_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Where it fits

Among the browser automation options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Babelwrap's toolset — babelwrap_new_session, babelwrap_close_session, babelwrap_navigate and 11 more — is a fair guide to whether it matches your workflow. It is maintained by babelwrap; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Babelwrap.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
babelwrap_new_sessionCreate a new browser session
babelwrap_close_sessionClose a browser session
babelwrap_navigateNavigate to a URL
babelwrap_snapshotGet current page state
babelwrap_clickClick an element
babelwrap_fillFill a form field
babelwrap_submitSubmit a form
babelwrap_extractExtract structured data
babelwrap_screenshotTake a screenshot
babelwrap_pressPress a keyboard key
babelwrap_scrollScroll the page
babelwrap_hoverHover over an element
babelwrap_uploadUpload a file
babelwrap_wait_forWait for a condition

How to install the Babelwrap MCP server

{
  "mcpServers": {
    "babelwrap": {
      "command": "uvx",
      "args": ["babelwrap-mcp"],
      "env": {
        "BABELWRAP_API_KEY": "your-value",
        "BABELWRAP_API_URL": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
BABELWRAP_API_KEYCredential the server authenticates with.Yes
BABELWRAP_API_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Babelwrap to babelwrap new session.
  • Use Babelwrap to babelwrap close session.
  • Use Babelwrap to babelwrap navigate.

Frequently asked questions

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