Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"strider-gmail": {
"env": {
"GOOGLE_CLIENT_ID": "your-client-id",
"GOOGLE_CLIENT_SECRET": "your-client-secret",
"GOOGLE_REFRESH_TOKEN": "your-refresh-token"
},
"args": [
"-y",
"@striderlabs/mcp-gmail"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server that gives AI agents the ability to send, read, and search email via Gmail.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@striderlabs/mcp-gmail' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @striderlabs/mcp-gmail against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in communication
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages.
Email & SMS infrastructure for AI agents — send and receive real email and text messages programmatically
A Model Context Protocol (MCP) server for interacting with Microsoft 365 and Office services through the Graph API
MCP Security Weekly
Get CVE alerts and security updates for io.github.markswendsen-code/gmail and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server that gives AI agents the ability to send, read, and search email via Gmail.
Agents use this connector to handle email autonomously on behalf of their human — reading important messages, searching for information, composing thoughtful replies, and sending communications.
Example agent workflows:
Usage example:
User: "Has anyone replied to my email about the Q2 budget proposal?"
Agent:
gmail_search → "to:me subject:budget"gmail_read → Read each messageThen agent might automatically draft a follow-up to Finance and ask for approval before sending.
npx @striderlabs/mcp-gmail
Add to your MCP client configuration (e.g., Claude Desktop):
{
"mcpServers": {
"strider-gmail": {
"command": "npx",
"args": ["-y", "@striderlabs/mcp-gmail"],
"env": {
"GOOGLE_CLIENT_ID": "your-client-id",
"GOOGLE_CLIENT_SECRET": "your-client-secret",
"GOOGLE_REFRESH_TOKEN": "your-refresh-token"
}
}
}
}
Send an email from the user's Gmail account.
Parameters:
to (required): Recipient email addresssubject (required): Email subject linebody (required): Email body contentcc (optional): CC recipientsbcc (optional): BCC recipientsSearch emails using Gmail search syntax.
Parameters:
query (required): Gmail search query (e.g., "from:example@gmail.com")maxResults (optional): Maximum results (default: 10)Read the full content of a specific email.
Parameters:
messageId (required): The Gmail message IDList recent emails from the inbox.
Parameters:
maxResults (optional): Maximum emails to list (default: 10)label (optional): Filter by label (e.g., "INBOX", "UNREAD")All tools return structured JSON:
{
"success": true,
"messageId": "...",
"message": "Email sent successfully"
}
Strider Labs builds action execution infrastructure for AI agents.
MIT