yuma iwasaki/brave-deep-research-mcp
Built by Metorial, the integration platform for agentic AI.
yuma iwasaki/brave-deep-research-mcp
Server Summary
Perform comprehensive web searches
Extract full content from webpages
Explore linked pages for additional context
Process detailed insights from multiple sources
A Model Context Protocol (MCP) server that combines Brave Search with Puppeteer-powered content extraction for deep research capabilities. This server allows AI assistants to perform comprehensive web searches by not only retrieving search results but also visiting the pages to extract full content and explore linked pages.
For a query like "climate change mitigation technologies":
Standard Brave Search MCP:
Title: "Latest Climate Change Mitigation Technologies - Example Site"
URL: "https://example.com/climate-tech"
Snippet: "Various technologies are being developed to mitigate climate change, including carbon capture..."
(Limited to just these search result snippets)
Brave Deep Research MCP:
# Latest Climate Change Mitigation Technologies - Example Site
URL: https://example.com/climate-tech
## Content
Carbon capture and storage (CCS) technology has advanced significantly in recent years. The latest direct air capture facilities can now remove CO2 at a cost of $250 per ton, down from $600 just five years ago. Implementation challenges remain, including...
[Followed by several pages of detailed content from the original page and linked pages]
# Install from npm
npm install -g @suthio/brave-deep-research-mcp
# Or clone the repository
git clone https://github.com/suthio/brave-deep-research-mcp.git
cd brave-deep-research-mcp
npm install
npm run build
Create a .env
file based on the provided .env.example
:
# Copy the example env file
cp .env.example .env
# Edit the file to add your Brave API key and other settings
nano .env
BRAVE_API_KEY
: Your Brave Search API key (required)PUPPETEER_HEADLESS
: Whether to run Puppeteer in headless mode (default: true)PAGE_TIMEOUT
: Timeout for page loading in milliseconds (default: 30000)DEBUG_MODE
: Enable detailed debug logging (default: false)# If installed globally via npm
brave-deep-research-mcp
# Or run directly from the package
npx @suthio/brave-deep-research-mcp
# Or run locally after cloning
npm start
To use this server with Claude for Desktop:
npm install -g @suthio/brave-deep-research-mcp
Edit the Claude for Desktop configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
Add the following to the mcpServers
section:
{
"mcpServers": {
"brave-deep-research": {
"command": "npx",
"args": ["@suthio/brave-deep-research-mcp"],
"env": {
"BRAVE_API_KEY": "your_brave_api_key_here",
"PUPPETEER_HEADLESS": "true"
}
}
}
}
The deep-search
tool accepts the following parameters:
query
(required): The search queryresults
(optional): Number of search results to process (default: 3, max: 10)depth
(optional): Depth of link traversal for each result (default: 1, max: 3)# Clone the repository
git clone https://github.com/suthio/brave-deep-research-mcp.git
cd brave-deep-research-mcp
# Install dependencies
npm install
# Run in development mode
npm run dev
# Build the project
npm run build
MIT