Brave Search MCP Server

Исследованияstdiohttp-streamingv2.0.82
Репозиторий

Предоставляет комплексные возможности поиска через Brave Search API и Model Context Protocol. Позволяет 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)"
    }
  }
}

Ресурсы

Этот сервер не предоставляет ресурсы.

Промпты

Этот сервер не предоставляет промпты.

Сведения о сервере

Автор
Brave (@brave)
Репозиторий
https://github.com/brave/brave-search-mcp-server
Лицензия
MIT
Версия
2.0.82
Звёзды
1,077
Последнее обновление
9 мая 2026 г.