🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

babelwrap-mcp

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babelwrap-mcp

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

pipPyPI
Version
0.1.1
Weekly downloads
71
Maintainers
1

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

Keywords

mcp

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts