MCP Catalogs
Home

brave-search-mcp vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

brave-search-mcp
by mikechao
filesystem
by modelcontextprotocol
Stars★ 117★ 85,748
30d uses
Score4777
Official
Categories
SearchAI / LLM ToolsDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit2 mo agothis month

brave-search-mcp · Summary

MCP server integrating Brave Search API with web, image, video, news, local POI, and LLM context search capabilities.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

brave-search-mcp · Use cases

  • Enhancing AI assistants with real-time web search capabilities
  • Research workflows requiring comprehensive web content extraction
  • Applications needing multi-modal search results (images, videos, news)
  • Local business information retrieval for service-based applications

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

brave-search-mcp · Install

Installation

  1. Get a Brave Search API key from [Brave Search API account](https://brave.com/search/api/)

Using Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcp-servers": {
    "brave-search": {
      "command": "npx",
      "args": [
        "-y",
        "brave-search-mcp"
      ],
      "env": {
        "BRAVE_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}

Running as standalone

BRAVE_API_KEY="your_key_here" npx -y brave-search-mcp

For HTTP mode:

BRAVE_API_KEY="your_key_here" npx -y brave-search-mcp --http

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.