Google Workspace
Google Workspace is a QuilrAI-built MCP available in the MCP Store. It exposes Gmail and Google Calendar tools. The MCP is multi-tenant and does not ship a shared Google OAuth client, so each connection must use its own Google OAuth Client ID and Client Secret created in Google Cloud.
Use this guide when you install Google Workspace from the MCP Store and the QuilrAI setup screen asks for a Google Client ID and Client Secret.
See Overview for prerequisites and secret-handling guidance.
What This MCP Can Do
Delete-event tools are intentionally not included. send_gmail_message is the only destructive tool.
Required OAuth Scopes
Add all of these to the OAuth consent screen. The MCP rejects tokens that are missing any of them.
Create The Google OAuth Client
- Open the Google Cloud Console and create or select a project to own the integration.
- Open APIs & Services > Library and enable both the Gmail API and the Google Calendar API.
- Open APIs & Services > OAuth consent screen and configure it:
- Choose Internal if every user is in your Google Workspace organization. Internal apps skip Google verification.
- Choose External if users sign in with any Google account, including consumer Gmail. External apps that use the restricted Gmail scopes require Google verification before general availability (see Keep In Mind).
- Add the six scopes from Required OAuth Scopes.
- Open APIs & Services > Credentials, click Create Credentials > OAuth client ID, and choose application type Web application.
- Under Authorized redirect URIs, click Add URI and paste the QuilrAI callback URL shown on the Google Workspace MCP setup screen. It must match exactly.
- Click Create, then copy the Client ID and Client Secret.
- Paste the Client ID and Client Secret into the QuilrAI manual OAuth setup screen, click Connect, and authorize Google. At the consent screen, grant every requested scope, including openid.
Keep In Mind
openidis not optional. If a user clears theopenidpermission at consent, authorization appears to succeed but every Google call fails because the token has nosubclaim. Re-authorize and grant all scopes.- Application type must be Web application. Desktop and other client types do not work with the QuilrAI gateway callback.
- Restricted-scope verification.
gmail.readonlyandgmail.composeare restricted scopes and the Calendar scopes are sensitive. An External app must complete Google's OAuth verification, including an annual CASA security assessment, before it can serve users outside its test-user list. Until then, add users under Test users on the consent screen to authorize without verification. An Internal Workspace app does not need verification. - One redirect URI per environment. Google matches the redirect URI exactly. Create a separate OAuth client for each QuilrAI environment whose callback URL differs.
- Each tenant brings its own credentials. This MCP is multi-tenant by design. There is no shared QuilrAI-owned Google client, so isolation comes from each connection using its own Google OAuth client.