Brave Search MCP Server
Brave Search MCP 서버
Brave Search API를 통합하여 웹 및 로컬 검색 기능을 모두 제공하는 MCP 서버 구현입니다.
특징
웹 검색 : 일반 쿼리, 뉴스, 기사, 페이지 매김 및 신선도 제어 기능 포함
지역 검색 : 자세한 정보와 함께 업체, 레스토랑 및 서비스를 찾아보세요
유연한 필터링 : 결과 유형, 안전 수준 및 콘텐츠 신선도 제어
스마트 폴백 : 로컬 검색은 결과가 발견되지 않으면 자동으로 웹으로 돌아갑니다.
Related MCP server: Search MCP Server
도구
브레이브 웹 검색
페이지 매김 및 필터링을 사용하여 웹 검색 실행
입력:
query(문자열): 검색어count(숫자, 선택 사항): 페이지당 결과(최대 20개)offset(숫자, 선택 사항): 페이지 번호 오프셋(최대 9)
용감한 지역 검색
지역 기업 및 서비스 검색
입력:
query(문자열): 로컬 검색어count(숫자, 선택 사항): 결과 수(최대 20개)
로컬 검색 결과가 없으면 자동으로 웹 검색으로 돌아갑니다.
구성
API 키 받기
Brave Search API 계정 에 가입하세요
플랜 선택 (월 2,000개 쿼리가 가능한 무료 계층 제공)
개발자 대시보드에서 API 키를 생성하세요
Claude Desktop과 함께 사용
claude_desktop_config.json 에 다음을 추가하세요:
도커
지엑스피1
엔피엑스
{
"mcpServers": {
"brave-search": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-brave-search"
],
"env": {
"BRAVE_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}VS Code를 사용한 사용
빠른 설치를 위해 아래의 원클릭 설치 버튼을 사용하세요...
수동 설치의 경우, VS Code의 사용자 설정(JSON) 파일에 다음 JSON 블록을 추가하세요. Ctrl + Shift + P 를 누르고 Preferences: Open User Settings (JSON) 입력하면 됩니다.
원하는 경우, 작업 공간의 .vscode/mcp.json 파일에 추가할 수 있습니다. 이렇게 하면 다른 사용자와 구성을 공유할 수 있습니다.
.vscode/mcp.json파일에는mcp키가 필요하지 않습니다.
도커
{
"mcp": {
"inputs": [
{
"type": "promptString",
"id": "brave_api_key",
"description": "Brave Search API Key",
"password": true
}
],
"servers": {
"brave-search": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"BRAVE_API_KEY",
"mcp/brave-search"
],
"env": {
"BRAVE_API_KEY": "${input:brave_api_key}"
}
}
}
}
}엔피엑스
{
"mcp": {
"inputs": [
{
"type": "promptString",
"id": "brave_api_key",
"description": "Brave Search API Key",
"password": true
}
],
"servers": {
"brave-search": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-brave-search"],
"env": {
"BRAVE_API_KEY": "${input:brave_api_key}"
}
}
}
}
}짓다
Docker 빌드:
docker build -t mcp/brave-search:latest -f src/brave-search/Dockerfile .특허
이 MCP 서버는 MIT 라이선스에 따라 라이선스가 부여됩니다. 즉, MIT 라이선스의 조건에 따라 소프트웨어를 자유롭게 사용, 수정 및 배포할 수 있습니다. 자세한 내용은 프로젝트 저장소의 LICENSE 파일을 참조하세요.
This server cannot be installed
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 Servers
- AlicenseCqualityDmaintenanceA server based on the MCP protocol that uses the Brave API for web search functionality.62MIT
- AlicenseAqualityCmaintenanceThe Search MCP Server enables seamless integration of network and local search capabilities in tools like Claude Desktop and Cursor, utilizing the Brave Search API for high-concurrency and asynchronous requests.178MIT
- AlicenseBqualityFmaintenanceAn MCP server that enables users to fetch Python documentation using the Brave Search API through natural language queries.1Apache 2.0
- AlicenseNot gradedqualityFmaintenanceAn MCP server that integrates the Brave Search API to provide both web and local search capabilities, with features like pagination, filtering, and smart fallbacks.16MIT
Related MCP Connectors
Serper MCP — wraps the Serper Google Search API (serper.dev)
An MCP server that gives your AI access to the source code and docs of all public github repos
Brave Search MCP — independent web index (no Google/Bing dependency)
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/modelcontextprotocol/brave-search'
If you have feedback or need assistance with the MCP directory API, please join our Discord server