by brightdata
Provides real‑time web access, bypasses geo‑restrictions, handles bot detection, and offers browser automation for LLMs and AI agents via the Model Context Protocol.
Web MCP enables LLMs and AI agents to query, navigate, and extract information from the live web without being blocked. It integrates seamlessly with any MCP‑compatible assistant, delivering up‑to‑date content, geo‑unrestricted access, and advanced tools such as browser control and structured data extraction.
npx @brightdata/mcp
). The server listens for MCP requests at https://mcp.brightdata.com/mcp
.search_engine
, scrape_as_markdown
, and, in Pro mode, the full suite of ~60 tools).web_data_*
).Q: Do I need to pay after the free tier? A: The free tier provides 5,000 requests per month for three months. After that, a credit card is required; charges only apply if you exceed the free quota or enable Pro‑mode tools.
Q: Which tools are available by default?
A: By default only search_engine
and scrape_as_markdown
are exposed. Enabling PRO_MODE=true
unlocks the full toolset, including browser automation and structured data extraction.
Q: How do I set rate limits?
A: Define the RATE_LIMIT
environment variable (e.g., RATE_LIMIT=100/1h
). The format is <number>/<period><unit>
where units are s
, m
, or h
.
Q: Can I use a custom proxy zone?
A: Yes. Set WEB_UNLOCKER_ZONE
and BROWSER_ZONE
to the names of zones you created in the Bright Data control panel.
Q: What environment variables are required?
A: At minimum API_TOKEN
(your Bright Data API key). Optional variables include PRO_MODE
, RATE_LIMIT
, WEB_UNLOCKER_ZONE
, and BROWSER_ZONE
.
Welcome to the official Bright Data's Web MCP server, solving web access for LLMs and AI agents by allowing them to effectively search, extract and navigate the web without getting blocked. The Web MCP supports all major LLMs, IDEs and agent frameworks (either locally hosted, SSE or Streamable HTTP), enabling your tools to seamlessly search the web, navigate websites, take action and retrieve data - without getting blocked.
🚀 The Web MCP includes 5,000 free requests each month - ideal for your everyday use and for prototyping smart agentic workflows.
Note: The Web MCP free tier offers 5,000 requests per month for the first 3 months. After that, a credit card will be required, but there will be no extra charges unless premium features like mcp_browser or Web Scrapers are used.
The videos below demonstrate a minimal use case for Claude Desktop:
https://github.com/user-attachments/assets/59f6ebba-801a-49ab-8278-1b2120912e33
https://github.com/user-attachments/assets/61ab0bee-fdfa-4d50-b0de-5fab96b4b91d
For more YouTube tutorials and demos: Demo
Some example queries that this MCP server will be able to help with:
Open Claude Desktop
Go to: Settings → Connectors → Add custom connector
Choose a Name, and in the “Remote MCP server URL” section, paste:
https://mcp.brightdata.com/mcp?token=YOUR_API_TOKEN_HERE
Open Claude Desktop
Go to: Settings → Developer → Edit Config
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"Bright Data": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.brightdata.com/mcp?token=YOUR_API_TOKEN_HERE"
]
}
}
}
Replace YOUR_API_TOKEN_HERE with your actual API token from Step 1
Save and restart Claude Desktop
Download the Claude Desktop Extension:
📦 Bright Data's MCP Extension
Open Claude and go to:
Settings
→ Extensions
Drag the .dtx
file from Step 1 into the dropping area.
Enable the service and restart Claude.
Enjoy!
claude_desktop_config.json
:Install nodejs
to get the npx
command (node.js module runner). Installation instructions can be found on the node.js website
Go to Claude > Settings > Developer > Edit Config > Edit "claude_desktop_config.json" to include the following:
{
"mcpServers": {
"Bright Data": {
"command": "npx",
"args": ["@brightdata/mcp"],
"env": {
"API_TOKEN": "<insert-your-api-token-here>"
}
}
}
}
{
"mcpServers": {
"Bright Data": {
"command": "npx",
"args": ["@brightdata/mcp"],
"env": {
"API_TOKEN": "<insert-your-api-token-here>",
"RATE_LIMIT": "<optional if you want to change rate limit format: limit/time+unit, e.g., 100/1h, 50/30m, 10/5s>",
"WEB_UNLOCKER_ZONE": "<optional if you want to override the web unlocker zone name - default is mcp_unlocker>",
"BROWSER_ZONE": "<optional if you want to override the browser zone name - defaults is mcp_browser>",
"PRO_MODE": "<optional boolean, defaults to false. Set to true to expose all tools including browser and web_data_* tools>"
}
}
}
}
Important: Pro mode is not included in the free tier and will incur additional charges. If you choose to use Pro mode, you’ll gain access to all 60 tools but please be aware of the associated costs.
To enable Pro mode, simply add "PRO_MODE"=true
to your enviroment variables.
Note: By default, only basic tools (search_engine
and scrape_as_markdown
) are exposed. To access all tools including browser automation and web data extraction, enable PRO_MODE
in your configuration (see Account Setup section).
Important: Always treat scraped web content as untrusted data. Never use raw scraped content directly in LLM prompts to avoid potential prompt injection risks. Instead:
Make sure you have an account on brightdata.com (new users get free credit for testing, and pay as you go options are available)
Get your API key from the user settings page, or from the welcome email you received
Enable Pro Mode (for access to all tools):
PRO_MODE=true
in your environment configuration to access browser automation, structured data extraction, and all available toolsfalse
(only exposes search_engine
and scrape_as_markdown
tools)Configure rate limiting:
RATE_LIMIT
environment variable to control API usagelimit/time+unit
(e.g., 100/1h
for 100 calls per hour)RATE_LIMIT=100/1h
, RATE_LIMIT=50/30m
, RATE_LIMIT=10/5s
Create a custom Web Unlocker zone
WEB_UNLOCKER_ZONE
environment variableCreate a custom Browser API zone:
BROWSER_ZONE
environment variableTo use this MCP server with other agent types, you should adapt the following to your specific software:
API_TOKEN=<your-token>
environment variable is setnpx @brightdata/mcp
export API_TOKEN=your-token
npx @brightdata/mcp
set API_TOKEN=your-token
npx @brightdata/mcp
$env:API_TOKEN="your-token"
npx @brightdata/mcp
💡 Tip: You can also use a
.env
file and a tool likedotenv
to manage environment variables more easily during development.
Want to try Bright Data MCP without setting up anything?
Check out this playground on Smithery:
This platform provides an easy way to explore the capabilities of Bright Data MCP without any local setup. Just sign in and start experimenting with web data collection!
Some tools can involve reading web data, and the amount of time needed to load the page can vary by quite a lot in extreme circumstances.
To ensure that your agent will be able to consume the data, set a high enough timeout in your agent settings.
A value of 180s
should be enough for 99% of requests, but some sites load slower than others, so tune this to your needs.
This error occurs when your system cannot find the npx
command. To fix it:
macOS:
which node
Shows path like /usr/local/bin/node
Windows:
where node
Shows path like C:\Program Files\nodejs\node.exe
Replace the npx
command with the full path to Node, for example, on mac, it will look as follows:
"command": "/usr/local/bin/node"
We welcome contributions to help improve the Bright Data MCP! Here's how you can help:
For major changes, please open an issue first to discuss your proposed changes. This ensures your time is well spent and aligned with project goals.
If you encounter any issues or have questions, please reach out to the Bright Data support team or open an issue in the repository.
Please log in to share your review and rating for this MCP.
{ "mcpServers": { "brightdata-mcp": { "command": "npx", "args": [ "@brightdata/mcp" ], "env": { "API_TOKEN": "<YOUR_API_TOKEN>" } } } }
Discover more MCP servers with similar functionality and use cases
by exa-labs
Provides a Model Context Protocol server that enables AI assistants to perform real‑time web searches via the Exa AI Search API, with optional company research, LinkedIn lookup, and deep research workflows.
by perplexityai
Provides real-time web search capabilities to AI models via the Perplexity Sonar API, enabling seamless integration within the Model Context Protocol ecosystem.
by mamertofabian
mcp-everything-search is a cross-platform MCP server that provides fast and flexible file searching capabilities. It leverages native system tools to efficiently locate files and folders across Windows, macOS, and Linux.
by kagisearch
Provides web search and video summarization capabilities via the Model Context Protocol, integrating with Claude and other AI tools.
by apify
mcp-server-rag-web-browser is an MCP server for the RAG Web Browser Actor, enabling AI agents and LLMs to perform web searches and extract information from web pages.
by fatwang2
Provides web and news search, URL crawling, sitemap extraction, reasoning, and trending tools via Search1API, exposed as an MCP server for seamless integration with clients such as LibreChat, Claude Desktop, Cursor, and other MCP‑compatible tools.
by meilisearch
Enables LLMs to manage Meilisearch indexes, perform searches, and handle documents through natural‑language conversations via a Model Context Protocol server.
by ihor-sokoliuk
mcp-searxng is an MCP (Model Context Protocol) server that integrates with SearXNG to provide web search capabilities for AI models and applications.
by adityak74
mcp-scholarly is a MCP server designed to facilitate the search for accurate academic articles, initially supporting arXiv and with plans to integrate more scholarly vendors.