For AI agents: a documentation index is available at /llms.txt
Skip to main content

Browserless Docs MCP

Connect to Browserless documentation directly from your IDE or AI tool. This is a read-only documentation server. For browser automation capabilities via MCP, see the Browserless MCP Server.

Prerequisites
  • An MCP-compatible IDE or AI tool (Cursor, Claude Desktop, VS Code, etc.)

Setup

Server URL: https://browserless-docs.mcp.kapa.ai

Setup steps vary depending on which AI assistant you're using.

Add the following to your .cursor/mcp.json file:

{
"mcpServers": {
"browserless-docs": {
"type": "http",
"url": "https://browserless-docs.mcp.kapa.ai"
}
}
}

For more information, see the Cursor MCP documentation.

What you can do

Once connected, you can ask context-aware questions about Browserless from within your editor. For example:

  • "How do I connect to Browserless with Puppeteer?"
  • "What are the available stealth options?"
  • "How do I solve CAPTCHAs with BrowserQL?"

For a full overview of AI and agent integration options, see the AI & Agent Integrations guide. To get started with Browserless itself, check the Quickstart guide.

FAQ & Troubleshooting

How do I connect my agent to Browserless?

Pass your Browserless WebSocket URL (wss://production-sfo.browserless.io/chromium?token=YOUR_TOKEN) as the browser endpoint in your agent's configuration.

My agent is getting blocked by bot detection

Use the Browserless Agent instead of a plain Puppeteer/Playwright connection — it runs on Browserless's managed, stealth-enabled browser infrastructure with residential proxies built in, so most bot detection is handled without extra configuration.

Next steps