freshcrate
Home > MCP Servers > brave-search-mcp-server

brave-search-mcp-server

No description

Description

README

Brave Search MCP Server

An MCP server implementation that integrates the Brave Search API, providing comprehensive search capabilities including web search, local business search, image search, video search, news search, and AI-powered summarization. This project supports both STDIO and HTTP transports, with STDIO as the default mode.

Ask DeepWiki

Migration

1.x to 2.x

Default transport now STDIO

To follow established MCP conventions, the server now defaults to STDIO. If you would like to continue using HTTP, you will need to set the BRAVE_MCP_TRANSPORT environment variable to http, or provide the runtime argument --transport http when launching the server.

Response structure of brave_image_search

Version 1.x of the MCP server would return base64-encoded image data along with image URLs. This dramatically slowed down the response, as well as consumed unnecessarily context in the session. Version 2.x removes the base64-encoded data, and returns a response object that more closely reflects the original Brave Search API response. The updated output schema is defined in src/tools/images/schemas/output.ts.

Tools

Web Search (brave_web_search)

Performs comprehensive web searches with rich result types and advanced filtering options.

Parameters:

  • query (string, required): Search terms (max 400 chars, 50 words)
  • country (string, optional): Country code (default: "US")
  • search_lang (string, optional): Search language (default: "en")
  • ui_lang (string, optional): UI language (default: "en-US")
  • count (number, optional): Results per page (1-20, default: 10)
  • offset (number, optional): Pagination offset (max 9, default: 0)
  • safesearch (string, optional): Content filtering ("off", "moderate", "strict", default: "moderate")
  • freshness (string, optional): Time filter ("pd", "pw", "pm", "py", or date range)
  • text_decorations (boolean, optional): Include highlighting markers (default: true)
  • spellcheck (boolean, optional): Enable spell checking (default: true)
  • result_filter (array, optional): Filter result types (default: ["web", "query"])
  • goggles (array, optional): Custom re-ranking definitions
  • units (string, optional): Measurement units ("metric" or "imperial")
  • extra_snippets (boolean, optional): Get additional excerpts (Pro plans only)
  • summary (boolean, optional): Enable summary key generation for AI summarization

Local Search (brave_local_search)

Searches for local businesses and places with detailed information including ratings, hours, and AI-generated descriptions.

Parameters:

  • Same as brave_web_search with automatic location filtering
  • Automatically includes "web" and "locations" in result_filter

Note: Requires Pro plan for full local search capabilities. Falls back to web search otherwise.

Video Search (brave_video_search)

Searches for videos with comprehensive metadata and thumbnail information.

Parameters:

  • query (string, required): Search terms (max 400 chars, 50 words)
  • country (string, optional): Country code (default: "US")
  • search_lang (string, optional): Search language (default: "en")
  • ui_lang (string, optional): UI language (default: "en-US")
  • count (number, optional): Results per page (1-50, default: 20)
  • offset (number, optional): Pagination offset (max 9, default: 0)
  • spellcheck (boolean, optional): Enable spell checking (default: true)
  • safesearch (string, optional): Content filtering ("off", "moderate", "strict", default: "moderate")
  • freshness (string, optional): Time filter ("pd", "pw", "pm", "py", or date range)

Image Search (brave_image_search)

Searches for images with automatic fetching and base64 encoding for direct display.

Parameters:

  • query (string, required): Search terms (max 400 chars, 50 words)
  • country (string, optional): Country code (default: "US")
  • search_lang (string, optional): Search language (default: "en")
  • count (number, optional): Results per page (1-200, default: 50)
  • safesearch (string, optional): Content filtering ("off", "strict", default: "strict")
  • spellcheck (boolean, optional): Enable spell checking (default: true)

News Search (brave_news_search)

Searches for current news articles with freshness controls and breaking news indicators.

Parameters:

  • query (string, required): Search terms (max 400 chars, 50 words)
  • country (string, optional): Country code (default: "US")
  • search_lang (string, optional): Search language (default: "en")
  • ui_lang (string, optional): UI language (default: "en-US")
  • count (number, optional): Results per page (1-50, default: 20)
  • offset (number, optional): Pagination offset (max 9, default: 0)
  • spellcheck (boolean, optional): Enable spell checking (default: true)
  • safesearch (string, optional): Content filtering ("off", "moderate", "strict", default: "moderate")
  • freshness (string, optional): Time filter (default: "pd" for last 24 hours)
  • extra_snippets (boolean, optional): Get additional excerpts (Pro plans only)
  • goggles (array, optional): Custom re-ranking definitions

Summarizer Search (brave_summarizer)

Generates AI-powered summaries from web search results using Brave's summarization API.

Parameters:

  • key (string, required): Summary key from web search results (use summary: true in web search)
  • entity_info (boolean, optional): Include entity information (default: false)
  • inline_references (boolean, optional): Add source URL references (default: false)

Usage: First perform a web search with summary: true, then use the returned summary key with this tool.

Configuration

Getting an API Key

  1. Sign up for a Brave Search API account
  2. Choose a plan:
    • Search: The real-time search data your chatbots & agents need to generate answers. Complete search results (URLs, text, news, images, and more), with additional LLM context optimized for AI.
    • Answers: Summarized, completed answers to any question. Answers grounded on a single search or multiple searches for better accuracy & reduced hallucinations.
  3. Generate your API key from the developer dashboard

Environment Variables

The server supports the following environment variables:

  • BRAVE_API_KEY: Your Brave Search API key (required)
  • BRAVE_MCP_TRANSPORT: Transport mode ("http" or "stdio", default: "stdio")
  • BRAVE_MCP_PORT: HTTP server port (default: 8000)
  • BRAVE_MCP_HOST: HTTP server host (default: "0.0.0.0")
  • BRAVE_MCP_LOG_LEVEL: Desired logging level("debug", "info", "notice", "warning", "error", "critical", "alert", or "emergency", default: "info")
  • BRAVE_MCP_ENABLED_TOOLS: When used, specifies a whitelist for supported tools
  • BRAVE_MCP_DISABLED_TOOLS: When used, specifies a blacklist for supported tools
  • BRAVE_MCP_STATELESS: HTTP stateless mode (default: "true"). When running on Amazon Bedrock Agentcore, set to "true".

Command Line Options

node dist/index.js [options]

Options:
  --brave-api-key <string>    Brave API key
  --transport <stdio|http>    Transport type (default: stdio)
  --port <number>             HTTP server port (default: 8080)
  --host <string>             HTTP server host (default: 0.0.0.0)
  --logging-level <string>    Desired logging level (one of _debug_, _info_, _notice_, _warning_, _error_, _critical_, _alert_, or _emergency_)
  --enabled-tools             Tools whitelist (only the specified tools will be enabled)
  --disabled-tools            Tools blacklist (included tools will be disabled)
  --stateless  <boolean>      HTTP Stateless flag

Installation

Installing via Smithery

To install Brave Search automatically via Smithery:

npx -y @smithery/cli install brave

Usage with Claude Desktop

Add this to your claude_desktop_config.json:

Docker

{
  "mcpServers": {
    "brave-search": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "-e", "BRAVE_API_KEY", "docker.io/mcp/brave-search"],
      "env": {
        "BRAVE_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}

NPX

{
  "mcpServers": {
    "brave-search": {
      "command": "npx",
      "args": ["-y", "@brave/brave-search-mcp-server", "--transport", "http"],
      "env": {
        "BRAVE_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}

Usage with VS Code

For quick installation, use the one-click installation buttons below:

Install with NPX in VS CodeInstall with NPX in VS Code InsidersInstall with Docker in VS CodeInstall with Docker in VS Code InsidersFor manual installation, add the following to your User Settings (JSON) or .vscode/mcp.json:

{
  "inputs": [
    {
      "password": true,
      "id": "brave-api-key",
      "type": "promptString",
      "description": "Brave Search API Key",
    }
  ],
  "servers": {
    "brave-search": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "-e", "BRAVE_API_KEY", "mcp/brave-search"],
      "env": {
        "BRAVE_API_KEY": "${input:brave-api-key}"
      }
    }
  }
}

NPX

{
  "inputs": [
    {
      "password": true,
      "id": "brave-api-key",
      "type": "promptString",
      "description": "Brave Search API Key",
    }
  ],
  "servers": {
    "brave-search-mcp-server": {
      "command": "npx",
      "args": ["-y", "@brave/brave-search-mcp-server", "--transport", "stdio"],
      "env": {
        "BRAVE_API_KEY": "${input:brave-api-key}"
      }
    }
  }
}

Build

Docker

docker build -t mcp/brave-search:latest .

Local Build

npm install
npm run build

Development

Prerequisites

  • Node.js 22.x or higher
  • npm
  • Brave Search API key

Setup

  1. Clone the repository:
git clone https://github.com/brave/brave-search-mcp-server.git
cd brave-search-mcp-server
  1. Install dependencies:
npm install
  1. Build the project:
npm run build

Testing via Claude Desktop

Add a reference to your local build in claude_desktop_config.json:

{
  "mcpServers": {
    "brave-search-dev": {
      "command": "node",
      "args": ["C:\\GitHub\\brave-search-mcp-server\\dist\\index.js"], // Verify your path
      "env": {
        "BRAVE_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}

Testing via MCP Inspector

  1. Build and start the server:
npm run build
node dist/index.js
  1. In another terminal, start the MCP Inspector:
npx @modelcontextprotocol/inspector node dist/index.js

STDIO is the default mode. For HTTP mode testing, add --transport http to the arguments in the Inspector UI.

Testing via Smithery.AI

  1. Establish and acquire a smithery.ai account and API key
  2. Run npm run install, npm run smithery:build, and lastly npm run smithery:dev to begin testing

Available Scripts

  • npm run build: Build the TypeScript project

  • npm run watch: Watch for changes and rebuild

  • npm run format: Format code with Prettier

  • npm run format:check: Check code formatting

  • npm run prepare: Format and build (runs automatically on npm install)

  • npm run inspector: Launch an instance of MCP Inspector

  • npm run inspector:stdio: Launch a instance of MCP Inspector, configured for STDIO

  • npm run smithery:build: Build the project for smithery.ai

  • npm run smithery:dev: Launch the development environment for smithery.ai

Docker Compose

For local development with Docker:

docker-compose up --build

License

This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.

Release History

VersionChangesUrgencyDate
v2.0.80# Changelog for v2.0.80 * Updated version ci: update build assets (v2.0.80) **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.79...v2.0.80High4/21/2026
v2.0.79# Changelog for v2.0.79 * Updated version ci: update build assets (v2.0.79) **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.78...v2.0.79High4/21/2026
v2.0.78# Changelog for v2.0.78 * Updated version ci: update build assets (v2.0.78) **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.77...v2.0.78High4/21/2026
v2.0.77# Changelog for v2.0.77 * Updated version ci: update build assets (v2.0.77) ## What's Changed * Update softprops/action-gh-release action to v2.6.1 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/282 * Update docker/login-action action to v4.1.0 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/281 * Update aws-actions/configure-aws-credentials action to v6.1.0 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/280 * UHigh4/21/2026
v2.0.76# Changelog for v2.0.76 * Updated version ci: update build assets (v2.0.76) ## What's Changed * Bump hono from 4.12.0 to 4.12.2 by @dependabot[bot] in https://github.com/brave/brave-search-mcp-server/pull/239 * chore(deps): update docker/build-push-action action to v6.19.2 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/250 * chore(deps): update dependency prettier to v3.8.1 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/249 * fix(deps): uHigh4/16/2026
v2.0.75# Changelog for v2.0.75 * Updated version ci: update build assets (v2.0.75) ## What's Changed * Update Marketplace Revision template file by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/242 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.74...v2.0.75Low2/26/2026
v2.0.74# Changelog for v2.0.74 * Updated version ci: update build assets (v2.0.74) ## What's Changed * Update Publish Github Action by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/241 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.73...v2.0.74Low2/25/2026
v2.0.73# Changelog for v2.0.73 * Updated version ## What's Changed * Bump @modelcontextprotocol/sdk from 1.25.2 to 1.26.0 by @dependabot[bot] in https://github.com/brave/brave-search-mcp-server/pull/229 * chore(deps): update docker/login-action action to v3.7.0 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/231 * chore(deps): update actions/checkout action to v6.0.2 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/230 * Bump qs from 6.14.1 to 6.14Low2/25/2026
v2.0.72# Changelog for v2.0.72 * Updated version **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.71...v2.0.72Low1/29/2026
v2.0.71# Changelog for v2.0.71 * Updated version ## What's Changed * Update Openssl Version in Dockerfile by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/224 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.70...v2.0.71Low1/28/2026
v2.0.70# Changelog for v2.0.70 * Updated version ## What's Changed * chore(deps): update node.js to da5dc26 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/217 * Bump hono from 4.11.4 to 4.11.7 by @dependabot[bot] in https://github.com/brave/brave-search-mcp-server/pull/223 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.69...v2.0.70Low1/28/2026
v2.0.69# Changelog for v2.0.69 * Updated version ## What's Changed * adds optional stateless configuration by @jonathansampson in https://github.com/brave/brave-search-mcp-server/pull/222 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.68...v2.0.69Low1/26/2026
v2.0.68# Changelog for v2.0.68 * Updated version ## What's Changed * chore(deps): update dependency @types/express to v5.0.6 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/211 * fix(deps): update dependency zod to v4.3.5 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/214 * chore(deps): update dependency tsx to v4.21.0 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/216 * chore(deps): update dependency prettier to v3.7.Low1/22/2026
v2.0.67# Changelog for v2.0.67 * Updated version ## What's Changed * Bump hono from 4.11.3 to 4.11.4 by @dependabot[bot] in https://github.com/brave/brave-search-mcp-server/pull/209 * Update AWS Marketplace Revision File to include Environment Variables by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/210 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.66...v2.0.67Low1/14/2026
v2.0.66# Changelog for v2.0.66 * Updated version ## What's Changed * chore(deps): update docker/setup-buildx-action action to v3.12.0 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/206 * chore(deps): update vegardit/gha-setup-jq action to v1.1.0 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/207 * Update MCP Protocol schema version to 2025-12-11 by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/208 **Full Changelog**: httLow1/13/2026
v2.0.65# Changelog for v2.0.65 * Updated version ## What's Changed * Bump @modelcontextprotocol/sdk from 1.24.2 to 1.25.2 by @dependabot[bot] in https://github.com/brave/brave-search-mcp-server/pull/204 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.64...v2.0.65Low1/13/2026
v2.0.64## What's Changed * adds deepwiki badge by @jonathansampson in https://github.com/brave/brave-search-mcp-server/pull/196 * chore(deps): update node.js to fd16460 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/190 * Bump qs from 6.14.0 to 6.14.1 by @dependabot[bot] in https://github.com/brave/brave-search-mcp-server/pull/203 * chore(deps): update dependency @smithery/cli to v2 and Zod to v4 by @renovate[bot] and @jonathansampson in https://github.com/brave/brave-seLow1/2/2026
v2.0.63# Changelog for v2.0.63 * Updated version ## What's Changed * chore(deps): update dependency prettier to v3.7.0 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/188 * chore(deps): update dependency prettier to v3.7.1 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/189 * chore(deps): update softprops/action-gh-release action to v2.5.0 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/192 * chore(deps): update actions/Low12/10/2025
v2.0.62# Changelog for v2.0.62 * Updated version ## What's Changed * chore(deps): update actions/checkout action to v6 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/180 * chore(deps): update aws-actions/configure-aws-credentials action to v5.1.1 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/183 * Bump express from 5.1.0 to 5.2.1 by @dependabot[bot] in https://github.com/brave/brave-search-mcp-server/pull/184 * Bump @modelcontextprotocol/sdk frLow12/3/2025
v2.0.61# Changelog for v2.0.61 * Updated version ## What's Changed * Bump node-forge from 1.3.1 to 1.3.2 by @dependabot[bot] in https://github.com/brave/brave-search-mcp-server/pull/179 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.60...v2.0.61Low11/27/2025
v2.0.60# Changelog for v2.0.60 * Updated version ## What's Changed * creates glama.json by @jonathansampson in https://github.com/brave/brave-search-mcp-server/pull/167 * chore(deps): update node.js to 26ded7f by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/169 * chore(deps): update softprops/action-gh-release action to v2.4.2 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/170 * fix(deps): update dependency @modelcontextprotocol/sdk to v1.21.1 byLow11/25/2025
v2.0.59# Changelog for v2.0.59 * Updated version ## What's Changed * chore(deps): update dependency @types/node to v24.8.0 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/150 * chore(deps): update dependency @smithery/cli to v1.6.2 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/152 * fix(deps): update dependency @modelcontextprotocol/sdk to v1.20.1 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/151 * chore(deps): updatLow11/14/2025
v2.0.58# Changelog for v2.0.58 * Updated version ## What's Changed * chore(deps): update dependency @types/node to v24.7.2 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/142 * chore(deps): update softprops/action-gh-release action to v2.4.1 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/143 * chore(deps): update actions/setup-node action to v6 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/145 * chore(deps): update deLow10/23/2025
v2.0.57# Changelog for v2.0.57 * Updated version **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.56...v2.0.57Low10/17/2025
v2.0.56# Changelog for v2.0.56 * Updated version **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.55...v2.0.56Low10/17/2025
v2.0.55# Changelog for v2.0.55 * Updated version ## What's Changed * chore(deps): update node.js to f8baf2c by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/133 * chore(deps): update node.js to b0d33ed by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/134 * chore(deps): update dependency @types/node to v24.7.0 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/135 * chore(deps): update node.js to 6ff78d6 by @renovate[bot] in hLow10/17/2025
v2.0.54# Changelog for v2.0.54 * Updated version ## What's Changed * Update Marketplace Instructions by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/132 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.53...v2.0.54Low10/9/2025
v2.0.53# Changelog for v2.0.53 * Updated version ## What's Changed * chore(deps): update dependency @types/node to v24.6.1 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/128 * Update Docker Image Build to not include SBOM and Provenance by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/131 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.52...v2.0.53Low10/8/2025
v2.0.52# Changelog for v2.0.52 * Updated version ## What's Changed * Update Marketplace JSON Entity ID by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/130 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.51...v2.0.52Low10/8/2025
v2.0.51# Changelog for v2.0.51 * Updated version ## What's Changed * Add Version Title to Marketplace Release by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/129 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.50...v2.0.51Low10/8/2025
v2.0.50# Changelog for v2.0.50 * Updated version ## What's Changed * chore(deps): update dependency @types/node to v24.6.0 by @renovate[bot] in https://github.com/brave/brave-search-mcp-server/pull/125 * Update Marketplace Release Template to use JSON by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/127 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.49...v2.0.50Low10/8/2025
v2.0.49# Changelog for v2.0.49 * Updated version ## What's Changed * Update Debugging for marketplace revision release yaml by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/126 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.48...v2.0.49Low10/7/2025
v2.0.48# Changelog for v2.0.48 * Updated version ## What's Changed * Debug Marketplace YAML file by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/124 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.47...v2.0.48Low10/7/2025
v2.0.47# Changelog for v2.0.47 * Updated version ## What's Changed * Update Release Notes Generation by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/123 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.46...v2.0.47Low10/6/2025
v2.0.46## What's Changed * Update Release Notes Export by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/122 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.45...v2.0.46Low10/6/2025
v2.0.45## What's Changed * Update Release Notes by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/121 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.44...v2.0.45Low10/6/2025
v2.0.44## What's Changed * Update IMAGE_TAG replacement by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/120 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.43...v2.0.44Low10/6/2025
v2.0.43## What's Changed * Remove EntityTags from StartChangeSet yaml template by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/119 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.42...v2.0.43Low10/6/2025
v2.0.42## What's Changed * Update Delivery Options to resolve EOF by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/118 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.41...v2.0.42Low10/6/2025
v2.0.41## What's Changed * Update DeliveryOptions yq by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/117 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.40...v2.0.41Low10/6/2025
v2.0.40## What's Changed * Update Delivery Options replace step by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/116 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.39...v2.0.40Low10/6/2025
v2.0.39## What's Changed * Updated DELIVERY_OPTION to be raw output from jq by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/115 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.38...v2.0.39Low10/6/2025
v2.0.38## What's Changed * Update Delivery Options to be captured in GITHUB_OUTPUT by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/113 * Fix EOF placement by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/114 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.37...v2.0.38Low10/6/2025
v2.0.37## What's Changed * Fix multiline environment variable in github action by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/111 * Fix EOF indent by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/112 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.36...v2.0.37Low10/6/2025
v2.0.36## What's Changed * Fix for EOF not being discovered successfully by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/110 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.35...v2.0.36Low10/6/2025
v2.0.35## What's Changed * Fix DELIVERY_OPTIONS environment variable by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/109 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.34...v2.0.35Low10/6/2025
v2.0.34## What's Changed * Update Release Notes Reference in Publish Action by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/108 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.33...v2.0.34Low10/6/2025
v2.0.33## What's Changed * Fixes for yq inplace commands by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/107 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.32...v2.0.33Low10/6/2025
v2.0.32## What's Changed * Update: README by @smithery-ai[bot] in https://github.com/brave/brave-search-mcp-server/pull/105 * Add Github Action Steps to Publish to AWS Marketplace by @hspencer77 in https://github.com/brave/brave-search-mcp-server/pull/106 ## New Contributors * @smithery-ai[bot] made their first contribution in https://github.com/brave/brave-search-mcp-server/pull/105 **Full Changelog**: https://github.com/brave/brave-search-mcp-server/compare/v2.0.31...v2.0.32Low10/6/2025
v2.0.31## What's Changed * docs: Add docker.io registry prefix to container image reference by @vorburger in https://github.com/brave/brave-search-mcp-server/pull/78 * chore: lock smithery/cli version in dev dependency by @arjunkmrm in https://github.com/brave/brave-search-mcp-server/pull/93 ## New Contributors * @vorburger made their first contribution in https://github.com/brave/brave-search-mcp-server/pull/78 * @arjunkmrm made their first contribution in https://github.com/brave/brave-search-mcp-seLow10/4/2025

Dependencies & License Audit

Loading dependencies...

Similar Packages

stigixStigix is a lab platform to validate SD‑WAN and SASE. ​ It unifies SaaS traffic generation, security tests, convergence probes, and voice/IoT/VyOS simulations in one web UIv1.2.2-patch.81
kibiRepo-local, per-git-branch, queryable knowledge base for LLM Agents.kibi-opencode@0.8.0
claw-pilotMulti-agent orchestration runtime with task board, flow engine, budget control, MCP integration and real-time dashboard. Self-hosted on Linux/macOS.v0.81.1
trace-mcpMCP server for Claude Code and Codex. One tool call replaces ~42 minutes of agent explorationv1.28.0
@baseplate-dev/plugin-aiAI agent integration plugin for Baseplate β€” generates AGENTS.md, CLAUDE.md, .mcp.json, and .agents/ configuration files0.6.8