
Browserbase
- 29 repo stars
- Updated May 12, 2026
- mcparmory/registry
com.mcparmory/browserbase is a MCP server that creates and controls Browserbase sessions for web automation, testing, and agent-driven browsing.
About
com.mcparmory/browserbase is an MCP server that provisions and drives Browserbase browser sessions so your coding agent can interact with real web UIs during automation, testing, and research-style tasks. Developers shipping SaaS or marketing sites often lack time to maintain Playwright grids on every laptop; this connector pushes session lifecycle and control into tools Claude Code and Cursor already speak—MCP over stdio. Register it when you need headed or headless flows against staging, login walls, or third-party dashboards the agent must verify before launch. It complements test-writing skills rather than replacing them: you still design assertions, but the server supplies the live browser. Expect a Browserbase account and API setup plus either uvx or Docker runtime. Version 1.0.4 ships dual packages from the mcparmory registry, aligning with other com.mcparmory integrations for a uniform solo-developer stack.
- Creates and controls cloud browser sessions for automation and AI agent tasks
- stdio MCP v1.0.4 with PyPI (mcparmory-browserbase) and Docker OCI install options
- Fits web automation and testing pipelines without local Selenium grid setup
- Registry-hosted package from mcparmory for consistent agent wiring
- Useful for reproducing user journeys agents cannot see from static code alone
Browserbase by the numbers
- Data as of Jul 26, 2026 (Skillselion catalog sync)
claude mcp add mcparmory-browserbase -- uvx mcparmory-browserbaseAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 29 |
|---|---|
| Package | mcparmory-browserbase |
| Transport | STDIO |
| Auth | None |
| Last updated | May 12, 2026 |
| Repository | mcparmory/registry ↗ |
What it does
Spin up remote browser sessions from your agent to exercise flows, scrape pages, or validate UI without maintaining local Chrome drivers.
Who is it for?
Best when you ship web apps and want agent-led smoke tests or scripted flows on staging without hosting browsers yourself.
Skip if: Pure API backends with no UI, or teams forbidden from cloud browser vendors.
What you get
Your agent can open Browserbase sessions, navigate sites, and run automation steps while you stay in the IDE.
- Agent-controlled browser sessions for navigation and automation
- Repeatable MCP server entry for Ship-phase UI checks
- Documented v1.0.4 dual-package deployment (PyPI + OCI)
By the numbers
- Version 1.0.4 with 2 packages (PyPI + Docker OCI)
- stdio MCP transport
- Repository: github.com/mcparmory/registry
README.md
MCP Armory Registry
Production-ready MCP servers for popular APIs, generated by MCP Blacksmith.
Servers · Install & Usage · Features · How it works · License
MCP servers that connect AI agents to real-world APIs. Each server is a standalone Python package — generated from the upstream OpenAPI spec using MCP Blacksmith and tested against the live API before release. Hosted on MCP Armory or run independently.
Servers
🧠 AI & Machine Learning ElevenLabs · Linkup · Parallel · Perplexity AI · Ragie · Replicate
📊 Analytics Ahrefs · Datadog · Google Analytics · Google Search Console · Linkly · Mixpanel · PostHog
⛓️ Blockchain & Crypto Alchemy NFT
💼 CRM & Sales Apollo
💬 Communication Atlassian Confluence · Google Gmail · MailerSend · Mailtrap · Postmark · Resend · Slack
🗄️ Data & Databases Enigma · Pinecone
🛠️ Developer Tools AgentQL · Apify · Bitbucket · Bright Data · Browserbase · BuiltWith · Canvas · CircleCI · Codacy · Contentful Management · ConvertAPI · E2B · Firecrawl · GitHub · GitLab · LaunchDarkly · Postman · Scrapingant · Semrush AppCenter · Sentry
📄 Documents & Printing PDF.co
🛒 E-commerce Shopify Admin
💰 Finance Alpha Vantage · Polygon · Ramp
👥 HR & Recruiting BambooHR
☁️ Infrastructure Globalping · Grafana · PagerDuty · Rootly · Runpod
⚖️ Legal & Compliance NetLicensing
🗺️ Maps & Location Google Maps Platform · IP2Location.io IP Geolocation · OpenCage Geocoding
📣 Marketing Customer.io Journeys Track · Klaviyo
🎬 Media & Entertainment Canva · Perigon
✅ Productivity Airtable · Asana · Atlassian Jira · ClickUp · Figma · Google Sheets · Miro · Notion · Outline · Shortcut
🔍 Search Algolia Search · Google Search
📦 Storage Box · Files.com · Google Drive
📌 Other Close
More servers are being added continuously.
Install & Usage
Every server is a standalone PyPI package (mcparmory-<server-name>). Each server's own README.md has full credential setup and configuration instructions.
# With uvx (no install needed)
uvx mcparmory-github
# With pip
pip install mcparmory-github
mcparmory-github
MCP client configuration (Claude Desktop, Cursor, Codex, Claude Code):
{
"mcpServers": {
"github": {
"command": "uvx",
"args": ["mcparmory-github"],
"env": {
"BEARER_TOKEN": "ghp_your_token_here"
}
}
}
}
Features
Every server in this registry provides:
- Full API coverage — all endpoints from the OpenAPI spec are exposed as MCP tools
- Authentication — API key, Bearer token, Basic auth, OAuth2, JWT, OpenID Connect, and mutual TLS
- Multi-auth — servers that support multiple auth methods let you configure whichever you prefer
- Pydantic validation — request parameters are validated before sending to the API
- Resilience — configurable retries with exponential backoff, connection pooling, and timeouts
- Response sanitization — optional redaction of sensitive fields from API responses
How servers are generated
Servers are generated by MCP Blacksmith, an automated pipeline that:
- Parses an OpenAPI specification
- Transforms operations through LLM-driven passes (naming, parameter filtering, enhancement, classification)
- Generates a complete MCP server with auth, models, validation, and configuration
- Tests every tool against the live API using an autonomous agent
- Deploys passing servers to this registry
The generator targets Python 3.11+ and uses FastMCP as the MCP framework.
Contributing
Servers are auto-generated — don't edit server code directly. If you find an issue, open a GitHub Issue describing:
- Broken or deprecated endpoints
- Missing or incorrect parameters
- Authentication problems
- Incorrect request/response models
We'll re-generate the affected server with the fix. To request a new server, open an issue with a link to the API's OpenAPI spec or documentation.
License
Each generated server is released under the MIT License. The underlying APIs have their own terms of service — see individual server READMEs for details.
Recommended MCP Servers
How it compares
Remote browser MCP connector, not a Playwright skill that teaches test design patterns.
FAQ
Who is com.mcparmory/browserbase for?
Developers using AI agents who need real browser sessions for QA, scraping, or workflow automation via Browserbase.
When should I use com.mcparmory/browserbase?
During Ship testing (and selective Build integrations) when you must validate UI flows, OAuth redirects, or dynamic pages before release.
How do I add com.mcparmory/browserbase to my agent?
Configure stdio MCP with `uvx mcparmory-browserbase` or `ghcr.io/mcparmory/browserbase:1.0.4`, and set Browserbase API keys in your environment or MCP config.