https://github.com/reecelikesramen/zed-brave-search-context-server
Adds the Brave Search MCP server to Zed's assistant panel.
https://github.com/reecelikesramen/zed-brave-search-context-server
Last synced: 8 months ago
JSON representation
Adds the Brave Search MCP server to Zed's assistant panel.
- Host: GitHub
- URL: https://github.com/reecelikesramen/zed-brave-search-context-server
- Owner: reecelikesramen
- Created: 2025-01-22T23:31:01.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-01-22T23:32:49.000Z (10 months ago)
- Last Synced: 2025-02-02T16:57:29.605Z (10 months ago)
- Language: Rust
- Homepage:
- Size: 114 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-mcp-servers - **zed-brave-search-context-server** - Adds the Brave Search MCP server to Zed's assistant panel. `rust` `mcp` `server` `cargo install --git https://github.com/reecelikesramen/zed-brave-search-context-server` (🔧 Utilities)
README
# Zed Brave Search Context Server
This extension provides a Model Context Server for Brave Search, for use with the Zed AI assistant. It leverages [this MCP server](https://github.com/modelcontextprotocol/servers/tree/main/src/brave-search).
It adds `/brave_web_search` and `/brave_local_search` slash commands to the Assistant Panel.
## Configuration
### Getting an API Key
To use the extension, first you will need to acquire a Brave API key.
1. Sign up for a [Brave Search API account](https://brave.com/search/api/)
2. Choose a plan (Free tier available with 2,000 queries/month)
3. Generate your API key [from the developer dashboard](https://api.search.brave.com/app/keys)
```json
{
"context_servers": {
"brave_search": {
"settings": {
"brave_api_key": ""
}
}
}
}
```
## Usage
- `/brave_web_search [count] [offset]`: Execute web searches with pagination and filtering.
- `/brave_local_search [count]`: Search for local businesses and services. Automatically falls back to web search if no local results found.