MCPSERV.CLUB
mcp2everything

Mcp2Brave

MCP Server

MCP server that powers web search via Brave API

Stale(50)
1stars
1views
Updated Mar 29, 2025

About

Mcp2Brave is an MCP protocol server written in Python that integrates the Brave API to provide web search capabilities. It exposes tools like search_web and search_web_info, enabling AI assistants to retrieve up-to-date search results.

Capabilities

Resources
Access data sources
Tools
Execute functions
Prompts
Pre-built templates
Sampling
AI model interactions

搜索示例

Overview

The mcp2brave server is a lightweight MCP (Model Context Protocol) implementation that bridges AI assistants such as Claude with the Brave Search API. By exposing a simple web‑search tool over MCP, it allows conversational agents to fetch up-to-date information from the internet without leaving their own context. This solves a common pain point for developers: integrating real‑time search capabilities into AI workflows while keeping the data flow secure and controlled through a single API key.

At its core, mcp2brave runs as an MCP server that listens for tool calls. When a client (for example, Claude) requests the or tool, the server forwards the query to Brave’s search endpoint, retrieves the results, and returns them in a structured JSON payload. The variant enriches the response with Chinese‑language descriptions, making it particularly useful for multilingual or regional applications. Because the server only exposes these two tools, developers can easily reason about its behavior and safely sandbox it within larger systems.

Key features include:

  • Brave API integration: Uses a single API key to access search results, ensuring compliance with Brave’s usage policies.
  • Dual‑language support: The standard tool returns raw JSON, while adds localized summaries for Chinese‑speaking contexts.
  • MCP compatibility: The server follows the MCP specification, allowing seamless installation as a Claude extension or any other MCP‑aware client.
  • Developer tooling: Comes with a built‑in MCP checker that launches a local web interface for debugging and testing tool calls.

Typical use cases involve:

  • Dynamic knowledge retrieval: AI assistants can answer questions that require current data, such as stock prices or weather forecasts.
  • Content generation: Writers and researchers can prompt the assistant to pull in recent articles or statistics during drafting.
  • Multilingual support: The Chinese‑description tool is ideal for applications targeting Mandarin users who need concise summaries of search results.

Integration into existing AI workflows is straightforward. Once the server is running, a client simply declares the two tools in its tool list and invokes them when needed. The MCP protocol handles authentication, request routing, and response formatting automatically, so developers can focus on higher‑level logic rather than plumbing. The server’s minimal footprint and clear API make it a valuable addition to any system that requires reliable, up‑to‑date web search without compromising security or control.