Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Control 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.
Control 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.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Bits is an AI browser automation platform. The MCP server lets you run browser automation tasks from your AI assistant.
Go to app.usebits.com Sign in with Google Navigate to Settings โ API Keys Click Create API Key, give it a name Copy the key (starts with bb_) โ you won't see it again
Add 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: Documentation search โ Query the SDK docs Code execution โ Write and run TypeScript against the Bits SDK
Use the Bits MCP to go to news.ycombinator.com and get the top 5 story titles The agent will: Search docs for navigation/scraping methods Write TypeScript code to navigate and extract data Execute it and return results
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
Navigate โ Go to URLs, handle redirects Read pages โ Extract text, get page layouts, take screenshots Interact โ Click elements, fill inputs, press keys Handle auth โ OAuth popups, login forms, 2FA (with stored credentials) Multi-window โ Switch between tabs/popups Structured output โ Return data in specific JSON schemas
For repeated tasks, create a workflow in the Bits web app: Go to app.usebits.com โ Workflows Create a workflow with a definition (instructions for the agent) Optionally add an output schema for structured responses Run via API: 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.
Web app: app.usebits.com API docs: api.usebits.com/openapi.json
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.