Skip to content

Commit 7a8e214

Browse files
its-mashMohammod Al Amin Ashik
andauthored
feat: add Google Workspace MCP server definition (#91)
Community server by taylorwilsdon (1.4k stars). uvx via workspace-mcp. Gmail, Calendar, Drive, Docs, Sheets, Slides, Forms, Tasks, Contacts, Chat, Apps Script. 100+ tools, OAuth 2.0 via Google Cloud Console credentials. Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> Co-authored-by: Mohammod Al Amin Ashik <mohammod@mcpmux.com>
1 parent 229317c commit 7a8e214

1 file changed

Lines changed: 97 additions & 0 deletions

File tree

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "taylorwilsdon.google-workspace-mcp-uvx",
4+
"name": "Google Workspace (uvx)",
5+
"alias": "google-workspace",
6+
"description": "Access Gmail, Google Calendar, Drive, Docs, Sheets, Slides, Forms, Tasks, Contacts, Chat, and Apps Script from a single MCP server. 100+ operations across all Google Workspace services.",
7+
"icon": "https://avatars.githubusercontent.com/u/6508528?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"productivity",
11+
"communication"
12+
],
13+
"tags": [
14+
"google",
15+
"gmail",
16+
"calendar",
17+
"drive",
18+
"docs",
19+
"sheets",
20+
"workspace",
21+
"oauth"
22+
],
23+
24+
"transport": {
25+
"type": "stdio",
26+
"command": "uvx",
27+
"args": [
28+
"workspace-mcp"
29+
],
30+
"env": {
31+
"GOOGLE_OAUTH_CLIENT_ID": "${input:GOOGLE_OAUTH_CLIENT_ID}",
32+
"GOOGLE_OAUTH_CLIENT_SECRET": "${input:GOOGLE_OAUTH_CLIENT_SECRET}"
33+
},
34+
"metadata": {
35+
"inputs": [
36+
{
37+
"id": "GOOGLE_OAUTH_CLIENT_ID",
38+
"label": "Google OAuth Client ID",
39+
"description": "OAuth 2.0 Client ID from Google Cloud Console. Create a Desktop application type credential.",
40+
"type": "text",
41+
"required": true,
42+
"secret": false,
43+
"placeholder": "xxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.apps.googleusercontent.com",
44+
"obtain": {
45+
"url": "https://console.cloud.google.com/apis/credentials",
46+
"instructions": "1. Go to Google Cloud Console > APIs & Services > Credentials\n2. Click 'Create Credentials' > 'OAuth client ID'\n3. Select 'Desktop app' as application type\n4. Copy the Client ID",
47+
"button_label": "Create Credentials"
48+
}
49+
},
50+
{
51+
"id": "GOOGLE_OAUTH_CLIENT_SECRET",
52+
"label": "Google OAuth Client Secret",
53+
"description": "OAuth 2.0 Client Secret from Google Cloud Console. Paired with the Client ID above.",
54+
"type": "text",
55+
"required": true,
56+
"secret": true,
57+
"placeholder": "GOCSPX-xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
58+
"obtain": {
59+
"url": "https://console.cloud.google.com/apis/credentials",
60+
"instructions": "1. Go to Google Cloud Console > APIs & Services > Credentials\n2. Click on your OAuth 2.0 Client ID\n3. Copy the Client Secret",
61+
"button_label": "View Credentials"
62+
}
63+
}
64+
]
65+
}
66+
},
67+
68+
"auth": {
69+
"type": "oauth",
70+
"instructions": "Create a Desktop OAuth 2.0 client in Google Cloud Console. Enable the Google Workspace APIs you need (Gmail, Calendar, Drive, etc.)."
71+
},
72+
73+
"contributor": {
74+
"name": "Taylor Wilsdon",
75+
"github": "taylorwilsdon",
76+
"url": "https://github.com/taylorwilsdon/google_workspace_mcp"
77+
},
78+
79+
"links": {
80+
"repository": "https://github.com/taylorwilsdon/google_workspace_mcp",
81+
"homepage": "https://workspace.google.com",
82+
"documentation": "https://github.com/taylorwilsdon/google_workspace_mcp#readme"
83+
},
84+
85+
"platforms": [
86+
"all"
87+
],
88+
89+
"capabilities": {
90+
"tools": true,
91+
"resources": true,
92+
"prompts": false,
93+
"read_only_mode": true
94+
},
95+
96+
"changelog_url": "https://github.com/taylorwilsdon/google_workspace_mcp/releases"
97+
}

0 commit comments

Comments
 (0)