Install
openclaw skills install bitsControl browser automation agents via the Bits MCP server. Use when running web scraping, form filling, data extraction, or any browser-based automation task. Bits agents can navigate websites, click elements, fill forms, handle OAuth flows, and extract structured data.
openclaw skills install bitsBits is an AI browser automation platform. The MCP server lets you run browser automation tasks from your AI assistant.
bb_) — you won't see it againAdd to your MCP config (e.g., ~/.openclaw/openclaw.json):
{
"mcpServers": {
"bits": {
"command": "npx",
"args": ["-y", "usebits-mcp"],
"env": {
"BITS_API_KEY": "bb_your_key_here"
}
}
}
}
For Claude Code (~/.claude.json):
{
"mcpServers": {
"bits": {
"command": "npx",
"args": ["-y", "usebits-mcp"],
"env": {
"BITS_API_KEY": "bb_your_key_here"
}
}
}
}
Restart your gateway/client to pick up the new MCP server.
The Bits MCP uses "Code Mode" — you write TypeScript SDK code that executes in a sandbox. Two tools are available:
Use the Bits MCP to go to news.ycombinator.com and get the top 5 story titles
The agent will:
Use Bits to go to example.com/contact, fill out the contact form with name "Test" and email "test@example.com", then submit
Use Bits to scrape the product listings from example-store.com/products and return them as JSON with name, price, and URL fields
For repeated tasks, create a workflow in the Bits web app:
POST /workflows/{id}/runs"API key invalid" — Check your key starts with bb_ and is copied correctly.
Slow startup — First run downloads the MCP package via npx. Subsequent runs are faster.
Task stuck — Browser automation can hit CAPTCHAs or unexpected modals. Check the live view URL in the response.