@microagents/server-brave-search
MCP server for Brave Search API integration
Overview
This project is a MCP (Model Context Protocol) server designed for integration with the Brave Search API, enabling enhanced search capabilities within applications.
To use this project, developers can clone the repository from GitHub and set it up as a server to connect to the Brave Search API for querying and retrieving search results.
- Integration with the Brave Search API - Supports Model Context Protocol for enhanced interaction - Open-source under MIT License
- Building applications that require reliable search functionality powered by Brave Search.
- Enhancing existing systems with advanced search capabilities.
- Research and data analysis that necessitates searching vast amounts of information.
Add to your AI client
Use these steps to connect @microagents/server-brave-search in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"server-brave-search-microagents": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-server-brave-search-microagents"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"server-brave-search-microagents": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-server-brave-search-microagents"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"server-brave-search-microagents": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-server-brave-search-microagents"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"server-brave-search-microagents": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-server-brave-search-microagents"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"server-brave-search-microagents": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-server-brave-search-microagents"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"server-brave-search-microagents": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-server-brave-search-microagents"
]
}
}
}FAQ
What is the purpose of this server?
The server enables seamless integration with the Brave Search API, providing developers with a robust search solution.
Is this project open-source?
Yes, it is licensed under the MIT License.
Who originally developed this project?
This project is a fork of the work by Anthropic, PBC.