Bright Data MCP
The Web MCP by Bright Data gives AI real-time web access without blocks or CAPTCHAs. It supports any LLM, provides 5,000 free requests/month, and delivers reliable, up-to-date web data instantly.
How to Install and Use Bright Data MCP
Bright Data MCP is a powerful tool to connect your AI with real-time web data easily. It gives your AI the ability to access live web information without getting blocked. This guide will show you how to install and start using Bright Data MCP with examples you can follow step-by-step.
Getting Started: Using the Hosted Server
If you want to use Bright Data MCP without any installation or setup on your computer, the easiest way is through their hosted server. This option is great if you want zero configuration and fast setup.
Here’s how to get started:
-
Obtain your API token from Bright Data by signing up on their platform.
-
Use the following URL as your MCP client:
https://mcp.brightdata.com/mcp?token=YOUR_API_TOKEN_HERE -
For example, if you want to connect it with Claude Desktop AI:
- Open Claude Desktop and go to: Settings → Connectors → Add custom connector
- Set the Name to
Bright Data Web - Paste the URL with your token for URL.
- Click "Add" and you're ready to use it.
This setup instantly connects your AI to the live web, ensuring it never gets blocked or shows CAPTCHA.
Installing Bright Data MCP Locally
If you prefer to run Bright Data MCP on your own machine, you can install it using Node.js and npm. This is perfect for users who want more control or want to customize features.
To install and run it locally, follow these simple steps:
-
Make sure you have Node.js installed on your computer. You can get it from nodejs.org.
-
Open your command line or terminal.
-
Run the command:
npx @brightdata/mcp -
You need to set your API token in your environment variables. Here is an example JSON setup if you want to add it to an app configuration:
{ "mcpServers": { "Bright Data": { "command": "npx", "args": ["@brightdata/mcp"], "env": { "API_TOKEN": "<your-api-token-here>" } } } }
This tells the MCP server to run locally with your token. Replace <your-api-token-here> with the token you got from Bright Data.
Using Pro and Custom Modes
By default, Bright Data MCP runs in Rapid Mode, which is free and perfect for most users. You get 5,000 free requests each month and access to useful tools like web search and scraping.
If you want to unlock more advanced features such as browser automation or special web data APIs, you need to enable Pro Mode or Custom Mode.
Here’s an example setup to enable Pro Mode with extra tools:
{
"mcpServers": {
"Bright Data": {
"command": "npx",
"args": ["@brightdata/mcp"],
"env": {
"API_TOKEN": "<your-api-token-here>",
"PRO_MODE": "true",
"GROUPS": "browser,advanced_scraping",
"TOOLS": "extract"
}
}
}
}
This configuration activates 60+ professional tools, like browser control and AI scraping helpers.
Summary
To quickly get Bright Data MCP working:
- Use the hosted server for zero setup with the URL:
https://mcp.brightdata.com/mcp?token=YOUR_API_TOKEN_HERE - Run locally with:
and your API token set in environment variables.npx @brightdata/mcp - Enable Pro Mode and custom tools by setting environment variables like
PRO_MODE=true, and defining tool groups and individual tools.
Bright Data MCP makes it easy to give your AI live web powers reliably and without getting blocked. Just follow these steps, and you’ll be ready to access real-time web data in no time!