Bright Data MCP
OfficialAvailable Tools
5 toolsdiscoverARead-only
Search the web and rank results by AI-driven relevance. Returns scored results with title, description, and URL. Supports intent-based ranking, geo-targeting, date filtering, and keyword filtering.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | City for localized results (e.g., "New York", "Berlin") | |
| query | Yes | The search query | |
| intent | No | Describes the specific goal of the search to help the AI evaluate and rank result relevance.If not provided, the query string is used as the intent | |
| country | No | 2-letter ISO country code for localized results (e.g., "US", "GB", "DE") | |
| end_date | No | Only content updated until this date (YYYY-MM-DD) | |
| language | No | Language code (e.g., "en", "es", "fr") | |
| start_date | No | Only content updated from this date (YYYY-MM-DD) | |
| num_results | No | Exact number of search results to return | |
| filter_keywords | No | Keywords that must appear in search results | |
| remove_duplicates | No | Remove duplicate results (default: true) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations provide readOnlyHint (true) and openWorldHint (true), confirming safe read from external web. The description adds value by detailing AI-driven ranking, intent-based ranking, geo-targeting, and filtering, which are behavioral traits not fully captured by annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences: first states purpose and return type, second lists features. No fluff, front-loaded, and every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 10 parameters and no output schema, the description covers key aspects (scored results, features) but lacks details on default number of results, scoring mechanics, or error handling. Adequate but with gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so baseline is 3. The description adds minimal extra meaning by grouping features (e.g., 'geo-targeting' maps to city/country) but does not elaborate on parameter usage beyond schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool performs web search with AI-driven relevance ranking and returns scored results with title, description, and URL. It lists supported features (intent, geo, date, keyword), distinguishing it from siblings like search_engine and scrape tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage through features but does not explicitly state when to use this tool vs alternatives like search_engine or scrape_as_markdown. No when-not-to or exclusions are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
scrape_as_markdownBRead-only
Scrape a single webpage URL with advanced options for content extraction and get back the results in MarkDown language. This tool can unlock any webpage even if it uses bot detection or CAPTCHA.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only and open-world behavior. The description adds a key behavioral claim: the ability to bypass bot detection and CAPTCHA, which is valuable information not covered by annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences with no wasted words. The claim about unlocking any webpage is front-loaded but could be more precise about scope.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter tool with no output schema, the description covers the main purpose and a key feature (bot detection bypass). However, it lacks details on return structure, error handling, or rate limits.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description only repeats 'webpage URL' without adding format or constraints beyond the schema's `format: uri`. No detail on the single parameter's meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool scrapes a single webpage URL and returns MarkDown, distinguishing it from siblings like scrape_batch. However, it mentions 'advanced options' that are not reflected in the input schema, slightly reducing clarity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for single URL scraping with bot detection bypass, but does not explicitly state when to use vs. siblings (e.g., scrape_batch for multiple URLs) or list any prerequisites or limitations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
scrape_batchARead-only
Scrape multiple webpages URLs with advanced options for content extraction and get back the results in MarkDown language. This tool can unlock any webpage even if it uses bot detection or CAPTCHA.
| Name | Required | Description | Default |
|---|---|---|---|
| urls | Yes | Array of URLs to scrape (max 5) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds value beyond annotations by noting MarkDown output and the ability to unlock webpages with bot detection/CAPTCHA. No contradictions with readOnlyHint and openWorldHint.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with core function and output format, no unnecessary words. Efficient and to the point.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given one parameter and no output schema, the description covers the main function and key capability. The vague phrase 'advanced options for content extraction' is a minor gap, but otherwise complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% for the single parameter 'urls', so baseline is 3. The description does not add significant meaning beyond the schema, merely restating 'multiple webpages URLs'.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb (scrape), resource (webpages), and output format (MarkDown). It distinguishes from siblings like scrape_as_markdown by specifying batch operation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use for multiple URLs and mentions bypassing bot detection, providing clear context. However, it lacks explicit when-not-to-use or alternative tool guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_engineBRead-only
Scrape search results from Google, Bing or Yandex. Returns SERP results in JSON or Markdown (URL, title, description),Ideal forgathering current information, news, and detailed search results.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | ||
| cursor | No | Pagination cursor for next page | |
| engine | No | ||
| geo_location | No | 2-letter country code for geo-targeted results (e.g., "us", "uk") |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and openWorldHint. The description adds output format and fields but does not disclose rate limits, auth requirements, or limitations. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with a typo ('forgathering') and missing punctuation ('results,Ideal'). Could be more concise and better structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 4 parameters and no output schema, the description lacks explanation of pagination, engine selection, and geo-targeting. Output format is mentioned but not how to use the tool effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 50% (cursor and geo_location have descriptions). The tool description does not elaborate on any parameters, failing to compensate for undocumented query and engine parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool scrapes search results from Google, Bing, or Yandex and returns SERP data in JSON/Markdown. It distinguishes itself from sibling tools like search_engine_batch (batch variant) and scrape_as_markdown (scrapes a single page).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description indicates it is ideal for gathering current information, news, and detailed search results but does not explicitly contrast with siblings or specify when to avoid using it. No mention of alternatives or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_engine_batchARead-only
Run multiple search queries simultaneously. Returns JSON for Google, Markdown for Bing/Yandex.
| Name | Required | Description | Default |
|---|---|---|---|
| queries | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true. The description adds that output format differs by engine (JSON for Google, Markdown for Bing/Yandex), which is useful but does not disclose other behavioral details like rate limits or authentication needs.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loading purpose and format differences. Every sentence adds value with no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (batch, multiple engines, optional parameters, varying output formats), the description lacks essential details about how to structure queries and interpret results. No output schema exists to compensate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 0%, and the tool description provides no explanation of the parameters (e.g., that queries is an array of objects with fields like cursor, engine, geo_location). The agent must rely solely on the schema, which is insufficient for correct invocation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it runs multiple search queries simultaneously, which is a specific verb+resource. It distinguishes from sibling tools like search_engine (single query) and scrape tools by being a batch search operation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for batching multiple queries, but lacks explicit when-to-use vs when-not-to-use or alternatives. It is clear enough to guide the agent to use this over search_engine for multiple queries.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
5 tool updates
v2.9.3- Added
discover - Added
scrape_as_markdown - Added
scrape_batch - Added
search_engine - Added
search_engine_batch
TDQS
Most tools have distinct purposes: discover for AI-ranked web search, scrape for webpage content, and search_engine for SERP results. However, discover and search_engine both involve search, potentially causing confusion.
Naming mixes patterns: 'discover' is a single verb, 'scrape_as_markdown' is a phrase, 'search_engine' is a noun. Inconsistent but still readable.
With 5 tools covering web search, scraping (single/batch), and engine search (single/batch), the count is appropriate for a focused data extraction tool.
Covers key data extraction needs: AI search, webpage scraping, and SERP scraping. Minor gap: no tool for updating or deleting data, but that is outside typical scope.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Bright Data MCP — Bright Data Web Unlocker + SERP API (brightdata.com)
A Model Context Protocol server for Wix AI tools
- UnifAPIOAuthcom.unifapi
Hosted MCP server for live public-data APIs and Skills for AI agents.
Related MCP Servers
- AlicenseBqualityFmaintenanceA Model Context Protocol (MCP) server for web research. Bring real-time info into Claude and easily research any topic.31,567300MIT
- AlicenseAqualityDmaintenanceModel Context Protocol server that enables Claude Desktop (or any MCP client) to fetch web content and process images appropriately.1170MIT
- AlicenseBqualityDmaintenanceA Model Context Protocol server that enables Claude to perform web research by integrating Google search, extracting webpage content, and capturing screenshots.131,56720MIT
- AlicenseAqualityCmaintenanceA Model Context Protocol server that enables Claude to perform web research by integrating Google search, extracting webpage content, and capturing screenshots in real-time.41,5679MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/brightdata/brightdata-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server