MCP Gsuite MCP Server

Right now, this MCP server supports Gmail and Calendar integration with the following capabilities:

Local serverstdioGo

What is the MCP Gsuite MCP server?

Right now, this MCP server supports Gmail and Calendar integration with the following capabilities:. The mcp gsuite mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 2 defined tools rather than through you.

Adding it to your client

@smithery/cli on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Its toolset

Everything the assistant can do here goes through one of these:

  • Token — --token or UV_PUBLISH_TOKEN
  • Debugging — Since MCP servers run over stdio, debugging can be challenging. For the best debugging experience, we strongly recommend using the [MCP

Configuration

You will need one environment variable: UV_PUBLISH_TOKEN. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the mcp gsuite mcp server does with a few real requests.

When to reach for it

Plenty of team communication servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. MCP Gsuite's toolset — Token, Debugging — is a fair guide to whether it matches your workflow. It is maintained by MarkusPfundstein; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
Token--token or UV_PUBLISH_TOKEN
DebuggingSince MCP servers run over stdio, debugging can be challenging. For the best debugging experience, we strongly recommend using the [MCP Inspector](https://github.com/modelcontextprotocol/inspector).

How to install the MCP Gsuite MCP server

{
  "mcpServers": {
    "gsuite": {
      "command": "npx",
      "args": ["-y", "@smithery/cli"],
      "env": {
        "UV_PUBLISH_TOKEN": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
UV_PUBLISH_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use MCP Gsuite to Token.
  • Use MCP Gsuite to Debugging.

Frequently asked questions

It connects MCP Gsuite to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (Token, Debugging) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Gsuite directly.