mcp-gsuite MCP server
MCP Server to interact with Google Gsuite prodcuts
Overview
mcp-gsuite is a server designed to interact with Google G Suite products, specifically Gmail and Calendar, providing various functionalities to enhance productivity and communication.
To use mcp-gsuite, you need to set up OAuth2 credentials via the Google Cloud Console, configure your accounts, and make requests to the server to perform actions related to Gmail and Calendar.
- Supports multiple Google accounts - Flexible email search and retrieval - Create, delete, and manage draft emails - Manage calendar events including creation and deletion with detailed options - Summarize email contents and plan calendar events easily.
- Managing multiple Gmail and calendar accounts simultaneously.
- Automating email responses and organizing drafts.
- Planning and scheduling events with integrated calendar management.
Add to your AI client
Use these steps to connect mcp-gsuite MCP server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-gsuite-markuspfundstein": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-gsuite-markuspfundstein"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-gsuite-markuspfundstein": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-gsuite-markuspfundstein"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-gsuite-markuspfundstein": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-gsuite-markuspfundstein"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-gsuite-markuspfundstein": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-gsuite-markuspfundstein"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-gsuite-markuspfundstein": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-gsuite-markuspfundstein"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-gsuite-markuspfundstein": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-gsuite-markuspfundstein"
]
}
}
}