MCP Catalogs
Home

filesystem vs claude_code-gemini-mcp

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

filesystem
by modelcontextprotocol
claude_code-gemini-mcp
by RaiAnsar
Stars★ 85,748★ 242
30d uses
Score7746
Official
Categories
File SystemDeveloper ToolsProductivity
AI / LLM ToolsDeveloper ToolsProductivity
LanguageTypeScriptPython
Last committhis month11 mo ago

filesystem · Summary

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

claude_code-gemini-mcp · Summary

An MCP server bridging Claude Code with Google's Gemini for AI collaboration and code assistance.

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

claude_code-gemini-mcp · Use cases

  • Getting AI-powered code reviews with security and performance focus
  • Asking technical questions to Gemini within Claude Code interface
  • Brainstorming solutions for complex programming challenges

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.

claude_code-gemini-mcp · Install

Installation

Quick Install
curl -sSL https://raw.githubusercontent.com/RaiAnsar/claude_code-gemini-mcp/main/install.sh | bash
Manual Install
  1. Clone the repository:
git clone https://github.com/RaiAnsar/claude_code-gemini-mcp.git
cd claude_code-gemini-mcp
  1. Run setup with your API key:
./setup.sh YOUR_GEMINI_API_KEY
Claude Desktop Configuration

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "gemini-collab": {
      "command": "python3",
      "args": ["~/.claude-mcp-servers/gemini-collab/server.py"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.