MCP Hub
Back to servers

babelwrap-mcp

Let AI agents interact with any website through natural language instead of CSS selectors

Registry
Updated
Apr 6, 2026

Quick Install

uvx babelwrap-mcp

BabelWrap MCP Server

An MCP server that gives AI agents web browsing superpowers via the BabelWrap API.

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

Installation

# Using uvx (recommended -- no install required)
uvx babelwrap-mcp

# Using pip
pip install babelwrap-mcp

# Using pipx (isolated environment)
pipx install babelwrap-mcp

Setup

1. Get an API Key

Sign up at babelwrap.com and create an API key from your dashboard.

2. Configure Your MCP Client

Claude Desktop

Add to your claude_desktop_config.json:

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

If you installed with pip or pipx, use the binary directly:

{
  "mcpServers": {
    "babelwrap": {
      "command": "babelwrap-mcp",
      "args": [],
      "env": {
        "BABELWRAP_API_KEY": "bw_your_api_key_here"
      }
    }
  }
}

Claude Code

claude mcp add babelwrap -- uvx babelwrap-mcp

Then set your API key as an environment variable:

export BABELWRAP_API_KEY="bw_your_api_key_here"

Available Tools

ToolDescription
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_back / babelwrap_forwardBrowser history
babelwrap_wait_forWait for a condition
babelwrap_list_pages / babelwrap_switch_pageMulti-tab support

Environment Variables

VariableRequiredDescription
BABELWRAP_API_KEYYesYour BabelWrap API key
BABELWRAP_API_URLNoAPI base URL (default: https://api.babelwrap.com/v1)

Documentation

Full documentation at babelwrap.com/docs/mcp

License

MIT

Reviews

No reviews yet

Sign in to write a review