MCP Catalogs
Home

everything vs google_workspace_mcp

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

everything
by modelcontextprotocol
google_workspace_mcp
by taylorwilsdon
Stars★ 85,748★ 2,410
30d uses
Score7758
Official
Categories
Developer ToolsAI / LLM ToolsOther
ProductivityCommunicationDeveloper Tools
LanguageTypeScriptPython
Last committhis monththis month

everything · Summary

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

google_workspace_mcp · Summary

Comprehensive Google Workspace MCP server for Gmail, Calendar, Drive, Docs, Sheets, and more with OAuth 2.1 support.

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

google_workspace_mcp · Use cases

  • Automate email and calendar management through AI assistants
  • Manage Google Drive files and permissions programmatically
  • Create and edit documents, spreadsheets, and presentations through natural language commands

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

google_workspace_mcp · Install

Installation

  1. Install the package via pip:
pip install workspace-mcp
  1. Set up OAuth credentials in Google Cloud Console
  1. Launch the server:
uvx workspace-mcp --tool-tier core

Claude Desktop Configuration

Add to your Claude Desktop config.json:

{
  "mcpServers": {
    "google-workspace": {
      "command": "uvx",
      "args": ["workspace-mcp", "--transport", "stdio"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.