Skip to main content

MCP Server Modes

Bright Data’s MCP server offers two modes to suit different needs:
  • Rapid (Free) - Quickly scrape search results and unlock any public webpage as clean Markdown.
  • Pro - Access advanced scraping, structured data from top platforms (Amazon, LinkedIn, X, Instagram, etc.), and full browser automation. Built for dynamic and large-scale use cases.
Rapid (Free) mode is enabled by default and is recommended for everyday browsing and data needs.

Local Configuration

When using the MCP server locally, you can set environment variables for finer control:
  • RATE_LIMIT - Set the rate limit for requests (default: 100/1h).
  • WEB_UNLOCKER_ZONE - Override the default web unlocker zone (default: mcp_unlocker).
  • BROWSER_ZONE - Override the default browser zone (default: mcp_browser).
  • PRO_MODE - Set to true/false to enable/disable Pro tools (default: false).
Use PRO_MODE=true to enable Pro mode.

Usage Example:

{
  "mcpServers":{
    "Bright Data":{
      "command":"npx",
      "args":["@brightdata/mcp"],
      "env":{
        "API_TOKEN":"<insert-your-api-token-here>",
        "WEB_UNLOCKER_ZONE": "my_zone_name",
        "BROWSER_ZONE": "my_browser_zone",
        "PRO_MODE": "true"
      }
    }
  }
}
I