mcp-google-workspace-server
v1.0.0
Published
MCP Server para Google Workspace (Gmail, Calendar e Meet)
Downloads
10
Maintainers
Readme
MCP Google Workspace Server
MCP Server para integração com Google Workspace (Gmail, Calendar e Meet)
Instalação
npm install -g mcp-google-workspace-serverConfiguração
Configure suas credenciais no Google Cloud Console:
- Acesse Google Cloud Console
- Crie um novo projeto
- Habilite as APIs: Gmail, Calendar e Meet
- Configure OAuth2.0:
- Vá em "APIs & Services" > "Credentials"
- Clique em "Create Credentials" > "OAuth client ID"
- Escolha "Web application"
- Configure as URIs de redirecionamento autorizadas
- Anote o Client ID e Client Secret
- Configure a tela de consentimento OAuth com os escopos necessários
- Use alguma ferramenta OAuth2.0 para gerar seu Refresh Token
Configure seu MCP: Adicione ao seu arquivo de configuração (
claude_desktop_config.json):
{
"mcpServers": {
"google-workspace": {
"command": "npx",
"args": [
"-y",
"mcp-google-workspace-server"
],
"env": {
"GOOGLE_CLIENT_ID": "YOUR_CLIENT_ID_HERE",
"GOOGLE_CLIENT_SECRET": "YOUR_CLIENT_SECRET_HERE",
"GOOGLE_REFRESH_TOKEN": "YOUR_REFRESH_TOKEN_HERE"
}
}
}
}Escopos OAuth Necessários
https://www.googleapis.com/auth/calendarhttps://www.googleapis.com/auth/calendar.eventshttps://www.googleapis.com/auth/meetings.space.createdhttps://www.googleapis.com/auth/gmail.modifyhttps://www.googleapis.com/auth/gmail.send
Funcionalidades
- Integração com Gmail
- Integração com Google Calendar
- Integração com Google Meet
Licença
MIT
