- ✓Open-source license (Apache-2.0)
- ✓Actively maintained (<30d)
- ✓Documented (README)
- !No description
git clone https://github.com/mmedum/google-mail-mcpTools overview
# google-mail-mcp
[](https://github.com/mmedum/google-mail-mcp/actions/workflows/ci.yml)
[](https://github.com/mmedum/google-mail-mcp/releases/latest)
[](https://pkg.go.dev/github.com/mmedum/google-mail-mcp)
[](./LICENSE)
Gmail as MCP tools. Read your mail without letting it read your assistant.
A single Go binary that speaks MCP over stdio. It runs as a subprocess of
your client, on your own machine, against your own Google account. There
is no server to host and no service account: you create a Google OAuth
client, log in once, and the refresh token stays in your OS keyring.
It works **inside** a mailbox. A calendar invitation's event, a linked
Drive file and a Chat space belong to servers built on those APIs.
## Why google-mail-mcp
Every message was written by somebody other than you, and some of it is
written to steer an AI assistant. So mail comes back inside blocks marked
with a per-call boundary token; text a reader of the mail would not have
seen — hidden styles, zero-width characters, text colored like its
background — is removed and counted; nothing a message links to or embeds
is fetched; and a link whose text names a different site from its target
is flagged.
The writes that would make a persuaded assistant dangerous are not there.
Forwarding, filters that forward and delegation are not implemented.
Sending is not registered unless you turn it on, and then only a draft
can be sent. Removal is trash; permanent deletion is not registered
unless you turn it on, and is the only thing that asks Google for full
mail access.
Reads are bounded. A thread comes back newest first within a character
budget, with quoted replies and signatures collapsed to a line saying how
much was hidden, and every omission says how to continue. Non-ASCII
subjects, names and filenames decode in any charset.
## Install
```bash
go install github.com/mmedum/google-mail-mcp/cmd/google-mail-mcp@latest
```
Or take an archive from the
[latest release](https://github.com/mmedum/google-mail-mcp/releases/latest)
— Linux, macOS and Windows, on amd64 and arm64 — and verify it before you
run it:
```bash
sha256sum -c checksums.txt --ignore-missing
# The checksum file is signed with a keyless Sigstore certificate tied to
# the release workflow's identity.
cosign verify-blob checksums.txt \
--bundle checksums.txt.bundle \
--certificate-identity-regexp 'https://github\.com/mmedum/google-mail-mcp/' \
--certificate-oidc-issuer https://token.actions.githubusercontent.com
# And the archive itself carries build provenance.
gh attestation verify google-mail-mcp_*.tar.gz --repo mmedum/google-mail-mcp
```
Every archive ships an SBOM. Builds are reproducible: rebuilding a tag
gives the same bytes.
### Claude Desktop
Every release also carries a `.mcpb` bundle. Open it and Claude Desktop
installs the server and asks for your OAuth client JSON. It covers macOS,
Windows and Linux on both architectures. Its SHA-256 is in the same signed
`checksums.txt`.
The bundle does **not** log you in. Install the binary as well, run
`google-mail-mcp login --client-secret <your client JSON>` once, and the
bundle uses the same credentials.
## Set up Google
[`docs/gcp-setup.md`](docs/gcp-setup.md) has the whole of it: a Cloud
project with the Gmail API enabled, a consent screen, the scopes for how
you will run the server, and a **Desktop app** OAuth client. Then:
```bash
google-mail-mcp login --client-secret ~/path/to/client_secret.json
google-mail-mcp doctor
```
Every Gmail scope that reads mail is one Google calls restricted. For your
own use that costs nothing, but an External client in Testing gets refresh
tokens that expire after seven days; `docs/runbook.md` says what that
looks like.
### Logging in over SSH
The callback goes to the *remote* host's loopback address while your
browser is local, so forward the port. Run
`google-mail-mcp login --no-browser`: it prints the authorization URL and
the exact `ssh -L` line for the port it picked. Run that line in a second
local terminal, then open the URL locally.
## Connect a client
Claude Code:
```bash
claude mcp add google-mail -- google-mail-mcp
```
Or, in a client config file:
```json
{
"mcpServers": {
"google-mail": {
"command": "google-mail-mcp"
}
}
}
```
Every setting is a `GMAIL_*` environment variable, listed in
[`docs/configuration.md`](docs/configuration.md). The ones worth knowing
now: `GMAIL_READ_ONLY=true` registers only the read tools and asks for
read-only access; `GMAIL_LOCAL_DIR` is the one directory attachments may
be saved to; `GMAIL_PROFILE` lets one machine hold several accounts.
## Tools
| Tool | What it does |
|---|---|
| `get_profile` | The signed-in account, its totals and the current history id |
| `search_threads` | Find conversations with a Gmail search |
| `search_messages` | Find single messages with a Gmail search |
| `get_thread` | Read a conversation, newest first, within a budget |
| `get_message` | Read one message, by id or by its `Message-ID` header |
| `list_labels` | Every label, optionally with counts |
| `list_drafts` | Unsent drafts |
| `get_draft` | Read one draft |
| `list_changes` | What changed since a history id, and when that cursor has expired |
| `get_settings` | Forwarding, vacation reply, send-as addresses, IMAP and POP, read-only |
| `list_filters` | The account's filters, with any that forward mail flagged |
| `download_attachment` | Save an attachment into `GMAIL_LOCAL_DIR`, never overwriting; only when that is set |
| `create_draft` | Save a new draft or a reply, threaded by the server; nothing is sent |
| `update_draft` | Change only the fields given, refusing a draft that changed since it was read |
| `delete_draft` | Delete a draft for good, with `confirm: true` |
| `modify_labels` | Add and remove labels on up to 100 messages or threads, reported per item |
| `trash` | Move up to 100 messages or threads to the trash, kept 30 days |
| `restore` | Take messages or threads out of the trash |
| `create_label` | Create a user label |
| `update_label` | Rename a user label or change how it shows |
| `send_draft` | Send a draft, naming every recipient not already in the thread; only with `GMAIL_ENABLE_SEND=true` |
| `delete_permanently` | Delete up to 100 messages or threads for good, with `confirm: true`; only with `GMAIL_ENABLE_DESTRUCTIVE=true` |
| `delete_label` | Delete a user label, with `confirm: true`; only with `GMAIL_ENABLE_DESTRUCTIVE=true` |
Searches take Gmail's own search language in `q`, plus `after` and
`before` as real instants — Gmail reads a date written inside `q` as
midnight Pacific time. Every result states the quota it spent. Every
write takes `dry_run`, names what it touches by id, and says what it
changed, read from Gmail's answer. `GMAIL_READ_ONLY=true` leaves the
writes out. The last three tools are not registered at all unless their
setting is on.
For clients that attach rather than call, `gmail://threads/{id}`,
`gmail://messages/{id}` and `gmail://labels` carry the same text as
`get_thread`, `get_message` and `list_labels`.
## Safety
- **Mail is data.** It arrives marked, with what was hidden removed and
counted, and no tool description tells a model to act on it.
- **Nothing reaches another person by default.** Drafts wait in Gmail
to be sent, and none of the tools changes a setting. Forwarding and
filters are shown, never set.
- **Sending is opt-in and goes through a draft.** With
`GMAIL_ENABLE_SEND=true`, `send_draft` sends a draft exactly as it is
stored. Every recipient not already in the thread must be written out
in `confirm_recipients`, and a send Gmail does not confirm is never
repeated.
- **Removal is trash.** Gmail keeps trashed mail for 30 days, and
`restore` brings it back. By default the only permanent removal is
`delete_draft`, which needs `confirm: true`. `delete_permanently` and
`delete_label` exist only with `GMAIL_ENABLE_DESTRUCTIVE=true`, which
also asks for the one scope that can delete; each call needs
`confirm: true`.
- **Files go to one directory.** `download_attachment` writes only into
`GMAIL_LOCAL_DIR`, under a name made safe, and never over an existing
file.
- **Logs never carry mail.** No address, subject, body, label name or
query; ids are cut to six characters. A test drives every tool with
marker values and fails if one reaches a log, which is what makes a debug
log safe to paste.
- Everything above is enforced in the server. Tool annotations are set,
but they are hints a client may ignore.
[`docs/security.md`](docs/security.md) has the whole of it.
## Getting help
Run `google-mail-mcp doctor` first: it checks the client JSON, the token,
the granted scopes and whether the Gmail API is enabled, and names what
is missing. [`docs/runbook.md`](docs/runbook.md) covers the common
surprises. Then open an issue with `doctor`'s output and the version.
**Do not paste a tool result**: it is mail, and carries other people's
words and addresses.
## Versioning
Semantic versioning. The tool names and their output fields are the
public contract; [`CHANGELOG.md`](CHANGELOG.md) marks anything you have
to act on as **Breaking**.
## Development
```bash
make check
```
That is what CI runs. [`docs/development.md`](docs/development.md) says
what each gate holds and how the live driver works.
## Documentation
[`docs/README.md`](docs/README.md) is the index. The design, the platform
facts behind it and a verdict on every Gmail API method are in
[`docs/architecture.md`](docs/architecture.md).
## Contributing
See [`CONTRIBUTING.md`](CONTRIBUTING.md).
## Security
Report a vulnerabilityWhat people ask about google-mail-mcp
What is mmedum/google-mail-mcp?
+
mmedum/google-mail-mcp is tools for the Claude AI ecosystem with 0 GitHub stars.
How do I install google-mail-mcp?
+
You can install google-mail-mcp by cloning the repository (https://github.com/mmedum/google-mail-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is mmedum/google-mail-mcp safe to use?
+
Our security agent has analyzed mmedum/google-mail-mcp and assigned a Trust Score of 77/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.
Who maintains mmedum/google-mail-mcp?
+
mmedum/google-mail-mcp is maintained by mmedum. The last recorded GitHub activity is dated 2026-09-27, with 0 open issues.
Are there alternatives to google-mail-mcp?
+
Yes. On ClaudeWave you can browse similar tools at /categories/tools, sorted by popularity or recent activity.
Deploy google-mail-mcp to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/mmedum-google-mail-mcp)<a href="https://claudewave.com/repo/mmedum-google-mail-mcp"><img src="https://claudewave.com/api/badge/mmedum-google-mail-mcp" alt="Featured on ClaudeWave: mmedum/google-mail-mcp" width="320" height="64" /></a>More Tools
A single CLAUDE.md file to improve Claude Code behavior, derived from Andrej Karpathy's observations on LLM coding pitfalls.
An AI skill that provides design intelligence for building professional UI/UX across multiple platforms.
🪨 why use many token when few token do trick. Viral skill + proxy for coding agents that cuts 65% of tokens by talking like a caveman.
CLI proxy that reduces LLM token consumption by 60-90% on common dev commands. Single Rust binary, zero dependencies
The fastest, litest AI Gateway. Rust core with Python SDK. Call 100+ LLM APIs in OpenAI (or native) format with cost tracking, guardrails, load balancing, and logging [Bedrock, Azure, OpenAI, Anthropic, OpenAI, VertexAI, vLLM, Nvidia NIM]
Use Claude Code, Codex, Pi, and OpenCode (and 6 other harnesses) for free (1.3B+ free tokens) from your terminal, app, IDE, or phone, and now from the browser with native browser sessions (multi-harness + multi-model) like OpenClaw (voice supported + ToS friendly)