AgentStack
MCP verified MIT Self-run

Go Google Mcp

mcp-matheusbuniotto-go-google-mcp · by matheusbuniotto

Model Context Protocol (MCP) server for Google Workspace. Secure CRUD for Drive, Gmail, Calendar, Sheets, Docs, Tasks and People via AI agents.

No reviews yet
0 installs
9 views
0.0% view→install

Install

$ agentstack add mcp-matheusbuniotto-go-google-mcp

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Go Google Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

go-google-mcp

[](https://goreportcard.com/report/github.com/matheusbuniotto/go-google-mcp) [](https://github.com/matheusbuniotto/go-google-mcp/actions/workflows/ci.yml)

Unified Model Context Protocol (MCP) server for Google Workspace.

go-google-mcp is a powerful, secure, and extensible Go-based tool that allows AI agents (like Claude Desktop, Cursor, or Gemini CLI) to interact directly with your Google services through a standardized interface.

🚀 Features

Interact with Google Workspace using natural language through these integrated services:

  • 📂 Google Drive: Powerful search, read text content, create files/folders, update content, move, share, and trash.
  • 📧 Gmail: Search/list threads, read full conversations, create drafts, move to trash, and send emails.
  • 📅 Google Calendar: List upcoming events, create new meetings (with attendees), and delete events.
  • 📊 Google Sheets: Create spreadsheets, read ranges, append rows, and update specific cells.
  • 📄 Google Docs: Create new documents and read full document text.
  • 👥 Google People: List contacts and create new connections.
  • ✅ Google Tasks: List task lists and tasks, create, update, and delete tasks (with optional status/due filtering).

🛠 Installation

Ensure you have Go installed (version 1.24 or later recommended).

go install github.com/matheusbuniotto/go-google-mcp/cmd/go-google-mcp@latest

🔐 Authentication

This tool supports both User OAuth 2.0 (best for personal/CLI use) and Service Accounts (best for server/automated use).

Option 1: User OAuth (Recommended)

  1. Create Credentials: Go to the Google Cloud Console, enable the necessary APIs (Drive, Gmail, etc.), and create a Desktop App OAuth client.
  2. Download JSON: Save the client secrets file as client_secrets.json.
  3. One-time Login:

``bash go-google-mcp auth login --secrets path/to/client_secrets.json ` *This securely saves your token to ~/.go-google-mcp/`.*

Option 2: Service Account

  1. Download your Service Account JSON key.
  2. Run with the -creds flag:

``bash go-google-mcp -creds path/to/service-account.json ``

🤖 Usage with AI Agents

Claude Desktop / Cursor

Add the following to your claude_desktop_config.json (or your IDE's MCP settings):

{
  "mcpServers": {
    "google-workspace": {
      "command": "go-google-mcp",
      "args": []
    }
  }
}

Gemini CLI

gemini mcp add google-workspace $(which go-google-mcp)

🛠 Development

git clone https://github.com/matheusbuniotto/go-google-mcp.git
cd go-google-mcp
go build ./cmd/go-google-mcp

📜 License

MIT License. See [LICENSE](LICENSE) for details.

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.