MCP Catalogs
Home

claude-code-google-workspace vs filesystem

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

claude-code-google-workspace
by evolsb
filesystem
by modelcontextprotocol
Stars★ 20★ 85,748
30d uses
Score4377
Official
Categories
ProductivityCommunicationDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguageShellTypeScript
Last commit2 mo agothis month

claude-code-google-workspace · Summary

MCP servers for Google Workspace (Gmail, Drive, Calendar, Sheets, Docs) and Slack with multi-account support.

filesystem · Summary

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

claude-code-google-workspace · Use cases

  • Accessing emails and documents across multiple Google accounts
  • Managing calendar events and tasks from Slack and Google Workspace
  • Searching and retrieving content from Google Drive and Slack conversations

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-google-workspace · Install

Quick Start

  1. Clone this repo and open Claude Code in it
git clone https://github.com/YOUR_USERNAME/claude-code-google-workspace.git
cd claude-code-google-workspace
claude
  1. Tell Claude Code: "Set up Google Workspace MCP for me"
  2. Restart Claude Code to load the new MCP servers

Manual Setup

Refer to [docs/manual-setup.md](docs/manual-setup.md) for detailed step-by-step instructions.

Configuration

Create .mcp.json at project root with:

{
  "mcpServers": {
    "gws-personal": {
      "command": "bash",
      "args": ["./gws-token-wrapper.sh", "personal.json"]
    },
    "slack": {
      "command": "npx",
      "args": ["slack-mcp-server"]
    }
  }
}

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.