Google Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Google Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Model Context Protocol server for Google Workspace with pluggable transports — run it locally over stdio or remotely over HTTP (so you can reach it from a phone). It ships with Google Chat today and is structured so Gmail, Drive, and Calendar can be added as additional modules.
You bring your own Google Cloud OAuth client and authorize once. The server then exposes Chat tools to any MCP client (Claude, Claude Code, etc.).
The server selects a transport at startup — by CLI arg or the GOOGLE_MCP_TRANSPORT env var. Adding a transport means implementing one TransportRunner and registering it; nothing else changes (Open/Closed).
| Transport | Command | Use |
|---|---|---|
stdio | google-mcp serve stdio (default) | Local MCP client on the same machine |
http | google-mcp serve http | Remote / phone access over HTTP |
The HTTP transport listens on PORT (default 8080) at GOOGLE_MCP_HTTP_PATH (default /mcp). Set GOOGLE_MCP_BEARER_TOKEN to require an Authorization: Bearer <token> header.
| Tool | Description |
|---|---|
chat_list_spaces | List spaces and direct messages the user belongs to. |
chat_list_messages | List messages in a space. |
chat_find_messages | Find messages in a space by case-insensitive text match. |
chat_send_message | Post a text message to a space. |
Google offers a hosted Chat MCP server at chatmcp.googleapis.com, but it is in Developer Preview and gated behind program enrollment. google-mcp runs locally, uses scopes you control, and is easy to extend to other Workspace APIs.
git clone https://github.com/thehellmaker/google-mcp.git
cd google-mcp
npm install
npm run buildCopy .env.example to .env (or export the variables in your shell):
export GOOGLE_OAUTH_CLIENT_ID="your-client-id.apps.googleusercontent.com"
export GOOGLE_OAUTH_CLIENT_SECRET="your-client-secret"npm run authThis opens a loopback authorization flow. Approve access in your browser. A refresh token is stored at ~/.config/google-mcp/token.json (mode 0600).
Add to your MCP client config (paths and env are illustrative):
{
"mcpServers": {
"google": {
"command": "node",
"args": ["/absolute/path/to/google-mcp/dist/index.js"],
"env": {
"GOOGLE_OAUTH_CLIENT_ID": "your-client-id.apps.googleusercontent.com",
"GOOGLE_OAUTH_CLIENT_SECRET": "your-client-secret"
}
}
}
}A local stdio server can only be reached from the same machine. To trigger tools from a phone, run the HTTP transport on a host the Claude app can reach over HTTPS, and add it as a custom connector.
GOOGLE_MCP_TRANSPORT=http PORT=8080 GOOGLE_MCP_BEARER_TOKEN="$(openssl rand -hex 32)" npm run start:httpThen put it behind HTTPS. Options, simplest first:
cloudflared tunnel --url http://localhost:8080 or ngrok http 8080 gives a public HTTPS URL.mcp-gateway, Docker MCP Gateway) when you want OAuth, per-tool policy, and audit logging without writing them yourself.Note on auth: the built-in bearer token is the minimal guard. Claude's custom-connector UI expects either an open server or full OAuth — a fronting gateway is the clean way to add OAuth to a remote deployment.
https://www.googleapis.com/auth/chat.spaces.readonly
https://www.googleapis.com/auth/chat.messages.readonly
https://www.googleapis.com/auth/chat.messages.create
https://www.googleapis.com/auth/chat.memberships.readonly.env, token.json, and credentials.json are gitignored.~/.config/google-mcp/.src/modules/<name>/index.ts exporting a ToolModule (name, scopes, register).src/modules/registry.ts.Scopes are aggregated automatically for the auth flow.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.