MCP Catalogs
Home

claude-code-google-workspace vs everything

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

claude-code-google-workspace
by evolsb
everything
by modelcontextprotocol
Stars★ 20★ 85,748
30d uses
Score4377
Official
Categories
ProductivityCommunicationDeveloper Tools
Developer ToolsAI / LLM ToolsOther
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.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

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"]
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.