8 lines
175 B
Bash
8 lines
175 B
Bash
|
|
#!/bin/bash
|
||
|
|
# Wrapper script to run Brave Search MCP server with environment variables
|
||
|
|
set -a
|
||
|
|
source "$(dirname "$0")/.env"
|
||
|
|
set +a
|
||
|
|
|
||
|
|
exec npx -y @brave/brave-search-mcp-server
|