PluginBench
MCP Server

io.github.markswendsen-code/gmail MCP Server

io.github.markswendsen-code/gmail

What is the io.github.markswendsen-code/gmail MCP server?

Gmail MCP server — send, read, and search email. By Strider Labs.

How to install io.github.markswendsen-code/gmail

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • GOOGLE_CLIENT_ID
    required

    Google OAuth 2.0 Client ID from Google Cloud Console

  • GOOGLE_CLIENT_SECRET
    required
    secret

    Google OAuth 2.0 Client Secret

  • GOOGLE_REFRESH_TOKEN
    required
    secret

    Google OAuth 2.0 Refresh Token for the user's Gmail account

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "gmail": {
      "command": "npx",
      "args": [
        "-y",
        "@striderlabs/mcp-gmail"
      ],
      "env": {
        "GOOGLE_CLIENT_ID": "<YOUR_GOOGLE_CLIENT_ID>",
        "GOOGLE_CLIENT_SECRET": "<YOUR_GOOGLE_CLIENT_SECRET>",
        "GOOGLE_REFRESH_TOKEN": "<YOUR_GOOGLE_REFRESH_TOKEN>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "gmail": {
      "command": "npx",
      "args": [
        "-y",
        "@striderlabs/mcp-gmail"
      ],
      "env": {
        "GOOGLE_CLIENT_ID": "<YOUR_GOOGLE_CLIENT_ID>",
        "GOOGLE_CLIENT_SECRET": "<YOUR_GOOGLE_CLIENT_SECRET>",
        "GOOGLE_REFRESH_TOKEN": "<YOUR_GOOGLE_REFRESH_TOKEN>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "gmail": {
      "command": "npx",
      "args": [
        "-y",
        "@striderlabs/mcp-gmail"
      ],
      "env": {
        "GOOGLE_CLIENT_ID": "<YOUR_GOOGLE_CLIENT_ID>",
        "GOOGLE_CLIENT_SECRET": "<YOUR_GOOGLE_CLIENT_SECRET>",
        "GOOGLE_REFRESH_TOKEN": "<YOUR_GOOGLE_REFRESH_TOKEN>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "gmail": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@striderlabs/mcp-gmail"
      ],
      "env": {
        "GOOGLE_CLIENT_ID": "<YOUR_GOOGLE_CLIENT_ID>",
        "GOOGLE_CLIENT_SECRET": "<YOUR_GOOGLE_CLIENT_SECRET>",
        "GOOGLE_REFRESH_TOKEN": "<YOUR_GOOGLE_REFRESH_TOKEN>"
      }
    }
  }
}
Claude Code
claude mcp add gmail --env GOOGLE_CLIENT_ID=<YOUR_GOOGLE_CLIENT_ID> --env GOOGLE_CLIENT_SECRET=<YOUR_GOOGLE_CLIENT_SECRET> --env GOOGLE_REFRESH_TOKEN=<YOUR_GOOGLE_REFRESH_TOKEN> -- npx -y @striderlabs/mcp-gmail

Related MCP servers

MCP server for Chipotle - let AI agents order burritos, bowls, and more

View repository →

MCP server for Crunchyroll anime streaming - search anime, manage watchlist, track viewing progress

View repository →

MCP server for Delta Airlines - search flights, check status, manage trips

View repository →

MCP server for DoorDash - let AI agents order food delivery autonomously with browser-based ordering

View repository →

MCP server for GrubHub - let AI agents order food and manage restaurant delivery autonomously

View repository →

MCP server for Instacart - let AI agents manage grocery shopping and place orders autonomously

View repository →
io.github.markswendsen-code/gmail MCP Server | PluginBench