Brave Search MCP Server

Investigaciónstdiohttp-streamingv2.0.82
Repositorio

Ofrece funciones completas de búsqueda mediante Brave Search API y Model Context Protocol. Permite a los agentes de IA realizar búsquedas web, de negocios locales, imágenes, vídeos y noticias, además de generar resúmenes con IA. Admite transportes STDIO y HTTP.

Esta descripción se ha traducido automáticamente y todavía no ha sido revisada.

Conectar

Añade esta configuración a .claude/mcp.json

Transporte:
{
  "mcpServers": {
    "brave-search": {
      "command": "npx",
      "args": [
        "-y",
        "@brave/brave-search-mcp-server"
      ],
      "env": {
        "BRAVE_API_KEY": "<YOUR_BRAVE_API_KEY>"
      }
    }
  }
}

Herramientas (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)"
    }
  }
}

Recursos

Este servidor no expone ningún recurso.

Prompts

Este servidor no expone ningún prompt.

Información del servidor

Autor
Brave (@brave)
Repositorio
https://github.com/brave/brave-search-mcp-server
Licencia
MIT
Versión
2.0.82
Estrellas
1,077
Última actualización
9 de mayo de 2026