Brave Search MCP Server
研究stdiohttp-streamingv2.0.82
通过 Model Context Protocol 调用 Brave Search API,提供完整的搜索能力。AI 智能体可以执行网页、本地商家、图片、视频和新闻搜索,并生成 AI 摘要。支持 STDIO 和 HTTP 传输。
此描述由机器自动翻译,尚未经过人工审核。
连接
将此配置添加到 .claude/mcp.json
传输方式:
{
"mcpServers": {
"brave-search": {
"command": "npx",
"args": [
"-y",
"@brave/brave-search-mcp-server"
],
"env": {
"BRAVE_API_KEY": "<YOUR_BRAVE_API_KEY>"
}
}
}
}工具 (6)
brave_web_search
Perform a web search using the Brave Search API and return relevant results with titles, URLs, and descriptions.
{
"type": "object",
"required": [
"query"
],
"properties": {
"count": {
"type": "integer",
"description": "Number of results to return (1-20, default 10)"
},
"query": {
"type": "string",
"description": "Search query string (max 400 chars, 50 words)"
},
"offset": {
"type": "integer",
"description": "Pagination offset (max 9, default 0)"
},
"freshness": {
"type": "string",
"description": "Time filter (pd, pw, pm, py, or date range)"
}
}
}brave_local_search
Search for local businesses and places using Brave Search with location-aware results.
{
"type": "object",
"required": [
"query"
],
"properties": {
"count": {
"type": "integer",
"description": "Number of results to return (max 20, default 5)"
},
"query": {
"type": "string",
"description": "Local search query (e.g., restaurants near me)"
}
}
}brave_image_search
Search for images with metadata and thumbnail information.
{
"type": "object",
"required": [
"query"
],
"properties": {
"count": {
"type": "integer",
"description": "Number of results to return (1-200, default 50)"
},
"query": {
"type": "string",
"description": "Search query string (max 400 chars, 50 words)"
}
}
}brave_video_search
Search for videos with comprehensive metadata and thumbnail information.
{
"type": "object",
"required": [
"query"
],
"properties": {
"count": {
"type": "integer",
"description": "Number of results to return (1-50, default 20)"
},
"query": {
"type": "string",
"description": "Search query string (max 400 chars, 50 words)"
}
}
}brave_news_search
Search for current news articles with freshness controls and breaking news indicators.
{
"type": "object",
"required": [
"query"
],
"properties": {
"count": {
"type": "integer",
"description": "Number of results to return (1-50, default 20)"
},
"query": {
"type": "string",
"description": "Search query string (max 400 chars, 50 words)"
},
"freshness": {
"type": "string",
"description": "Time filter (default: pd for last 24 hours)"
}
}
}brave_summarizer
Generate AI-powered summaries from web search results using Brave's summarization API.
{
"type": "object",
"required": [
"key"
],
"properties": {
"key": {
"type": "string",
"description": "Summary key from web search results (use summary=true in web search first)"
}
}
}资源
此服务器未提供任何资源。
提示词
此服务器未提供任何提示词。
服务器信息
- 许可证
- MIT
- 版本
- 2.0.82
- 星标
- 1,077
- 最后更新
- 2026年5月9日