Add web search capabilities to Claude using Brave Search API for real-time information retrieval.
MCP (Model Context Protocol) servers extend Claude's capabilities with external tools and data sources. They provide access to databases, APIs, file systems, and more. Configure MCP servers in .mcp.json or add them via `claude mcp add` command.
1. Get a Brave Search API key from https://brave.com/search/api/ 2. Add to .mcp.json with your API key 3. Or use CLI: claude mcp add brave-search This enables Claude to search the web for: - Current events and news - Documentation and tutorials - Package information - Any real-time data
claude mcp add brave-search{
"mcpServers": {
"brave-search": {
"command": "npx",
"args": [
"-y",
"@anthropic-ai/mcp-server-brave-search"
],
"env": {
"BRAVE_API_KEY": "YOUR_BRAVE_API_KEY"
}
}
}
}Claude can search the web: "What are the latest React 19 features?" or "Find documentation for Prisma"
Manage Docker containers and images. List, start, stop containers, view logs, and inspect container configurations.