Agent skill
julien-mcp-brave
Install Brave Search MCP for web search capabilities. Use when user needs to add Brave Search API to their project.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/product/julien-mcp-brave
SKILL.md
MCP Brave Search Installer
This skill installs the Brave Search MCP server into the current project.
Installation Procedure
When the user asks to install Brave MCP:
- Check for existing
.mcp.jsonin the project root - Merge configuration - Add the following server to
mcpServers:
{
"brave": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-brave-search"],
"env": {
"BRAVE_API_KEY": "${BRAVE_API_KEY}"
}
}
}
- If
.mcp.jsondoesn't exist, create it with the full structure:
{
"mcpServers": {
"brave": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-brave-search"],
"env": {
"BRAVE_API_KEY": "${BRAVE_API_KEY}"
}
}
}
}
Environment Variables Required
BRAVE_API_KEY: Your Brave Search API key
Usage After Installation
Restart Claude Code to activate the MCP server. The Brave Search tools will then be available.
Example Usage
After installation, use in Claude Code:
"Search for the latest React documentation"
"Find npm packages for authentication"
Skill Chaining
- Input: User request to install Brave Search MCP
- Output: Configured
.mcp.jsonwith brave server - Tools Used: Read, Edit, Write
- Chains With: Any skill needing web search capabilities
Troubleshooting
| Problem | Solution |
|---|---|
npx not found |
Install Node.js and ensure npm is in PATH |
| API key invalid | Verify BRAVE_API_KEY in environment variables |
| Server not starting | Check Claude Code logs, restart after config change |
| Permission denied | Run terminal as administrator on Windows |
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?