A single-file MCP-server for interacting with Gmail. Works with Claude Desktop and Cursor.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"gmail-mcp-server": {
"command": "go",
"args": [
"run",
"github.com/PaulFidika/gmail-mcp-server@latest"
]
}
}
}
Run in terminal:
claude mcp add gmail-mcp-server go run github.com/PaulFidika/gmail-mcp-server@latest
Add to .cursor/mcp.json:
{
"mcpServers": {
"gmail-mcp-server": {
"command": "go",
"args": [
"run",
"github.com/PaulFidika/gmail-mcp-server@latest"
]
}
}
}