Some checks failed
CI / Check / macos-latest (push) Has been cancelled
CI / Check / ubuntu-latest (push) Has been cancelled
CI / Check / windows-latest (push) Has been cancelled
CI / Test / macos-latest (push) Has been cancelled
CI / Test / ubuntu-latest (push) Has been cancelled
CI / Test / windows-latest (push) Has been cancelled
CI / Clippy (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Security Audit (push) Has been cancelled
CI / Secrets Scan (push) Has been cancelled
CI / Install Script Smoke Test (push) Has been cancelled
29 lines
818 B
TOML
29 lines
818 B
TOML
id = "brave-search"
|
|
name = "Brave Search"
|
|
description = "Perform web searches using the Brave Search API through the MCP server"
|
|
category = "ai"
|
|
icon = "🦁"
|
|
tags = ["search", "web", "brave", "api", "information-retrieval"]
|
|
|
|
[transport]
|
|
type = "stdio"
|
|
command = "npx"
|
|
args = ["@modelcontextprotocol/server-brave-search"]
|
|
|
|
[[required_env]]
|
|
name = "BRAVE_API_KEY"
|
|
label = "Brave Search API Key"
|
|
help = "An API key from the Brave Search API dashboard"
|
|
is_secret = true
|
|
get_url = "https://brave.com/search/api/"
|
|
|
|
[health_check]
|
|
interval_secs = 60
|
|
unhealthy_threshold = 3
|
|
|
|
setup_instructions = """
|
|
1. Go to https://brave.com/search/api/ and sign up for a Brave Search API plan (free tier available).
|
|
2. Generate an API key from your Brave Search API dashboard.
|
|
3. Paste the API key into the BRAVE_API_KEY field above.
|
|
"""
|