@brave/brave-search-mcp-server 2.0.30 → 2.0.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +9 -1
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -135,6 +135,14 @@ Options:
135
135
 
136
136
  ## Installation
137
137
 
138
+ ### Installing via Smithery
139
+
140
+ To install Brave Search automatically via [Smithery](https://smithery.ai/server/brave):
141
+
142
+ ```bash
143
+ npx -y @smithery/cli install brave
144
+ ```
145
+
138
146
  ### Usage with Claude Desktop
139
147
 
140
148
  Add this to your `claude_desktop_config.json`:
@@ -146,7 +154,7 @@ Add this to your `claude_desktop_config.json`:
146
154
  "mcpServers": {
147
155
  "brave-search": {
148
156
  "command": "docker",
149
- "args": ["run", "-i", "--rm", "-e", "BRAVE_API_KEY", "mcp/brave-search"],
157
+ "args": ["run", "-i", "--rm", "-e", "BRAVE_API_KEY", "docker.io/mcp/brave-search"],
150
158
  "env": {
151
159
  "BRAVE_API_KEY": "YOUR_API_KEY_HERE"
152
160
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@brave/brave-search-mcp-server",
3
3
  "mcpName": "io.github.brave/brave-search-mcp-server",
4
- "version": "2.0.30",
4
+ "version": "2.0.32",
5
5
  "description": "Brave Search MCP Server: web results, images, videos, rich results, AI summaries, and more.",
6
6
  "keywords": [
7
7
  "api",
@@ -27,8 +27,8 @@
27
27
  ],
28
28
  "scripts": {
29
29
  "build": "tsc && shx chmod +x dist/*.js",
30
- "smithery:build": "npx @smithery/cli build",
31
- "smithery:dev": "npx @smithery/cli dev",
30
+ "smithery:build": "smithery build",
31
+ "smithery:dev": "smithery dev",
32
32
  "prepare": "npm run format && npm run build",
33
33
  "watch": "tsc --watch",
34
34
  "format": "prettier --write \"src/**/*.ts\"",
@@ -45,6 +45,7 @@
45
45
  },
46
46
  "devDependencies": {
47
47
  "@types/express": "5.0.3",
48
+ "@smithery/cli": "1.4.6",
48
49
  "@types/node": "24.3.1",
49
50
  "prettier": "3.6.2",
50
51
  "shx": "0.4.0",