Let AI agents interact with any website through natural language instead of CSS selectors
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-soulfir-babelwrap-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP server that gives AI agents web browsing superpowers via the BabelWrap API.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in browser
Browser automation with Puppeteer for web scraping and testing
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
MCP server for Firecrawl — search, scrape, and interact with the web. Supports both cloud and self-hosted instances. Features include web search, scraping, page interaction, batch processing, and LLM-powered content analysis.
The Apify MCP server enables your AI agents to extract data from social media, search engines, maps, e-commerce sites, or any other website using thousands of ready-made scrapers, crawlers, and automation tools available on the Apify Store.
MCP Security Weekly
Get CVE alerts and security updates for io.github.soulfir/babelwrap-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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.
# Using uvx (recommended -- no install required)
uvx babelwrap-mcp
# Using pip
pip install babelwrap-mcp
# Using pipx (isolated environment)
pipx install babelwrap-mcp
Sign up at babelwrap.com and create an API key from your dashboard.
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 mcp add babelwrap -- uvx babelwrap-mcp
Then set your API key as an environment variable:
export BABELWRAP_API_KEY="bw_your_api_key_here"
| Tool | Description |
|---|---|
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 |
babelwrap_upload | Upload a file |
babelwrap_back / babelwrap_forward | Browser history |
babelwrap_wait_for | Wait for a condition |
babelwrap_list_pages / babelwrap_switch_page | Multi-tab support |
| Variable | Required | Description |
|---|---|---|
BABELWRAP_API_KEY | Yes | Your BabelWrap API key |
BABELWRAP_API_URL | No | API base URL (default: https://api.babelwrap.com/v1) |
Full documentation at babelwrap.com/docs/mcp
MIT