@dguido/google-workspace-mcp 1.2.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -5
- package/dist/index.js +747 -6
- package/dist/index.js.map +4 -4
- package/package.json +7 -4
package/README.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# Google Workspace MCP Server
|
|
2
2
|
|
|
3
|
-
MCP server providing Claude access to Google Drive, Docs, Sheets, Slides, Calendar, and
|
|
3
|
+
MCP server providing Claude access to Google Drive, Docs, Sheets, Slides, Calendar, Gmail, and Contacts.
|
|
4
4
|
|
|
5
5
|
## Quick Start
|
|
6
6
|
|
|
7
7
|
### Prerequisites
|
|
8
8
|
|
|
9
9
|
- **Node.js** 22+ (LTS recommended)
|
|
10
|
-
- **Google Cloud Project** with Drive, Docs, Sheets, and
|
|
10
|
+
- **Google Cloud Project** with Drive, Docs, Sheets, Slides, Calendar, Gmail, and People APIs enabled
|
|
11
11
|
- **OAuth 2.0 Credentials** (Desktop application type)
|
|
12
12
|
|
|
13
13
|
### 1. Set Up Google Cloud
|
|
@@ -67,7 +67,7 @@ Create a presentation called "Product Roadmap" with slides for Q1 milestones.
|
|
|
67
67
|
### 2. Enable Required APIs
|
|
68
68
|
|
|
69
69
|
- Go to "APIs & Services" > "Library"
|
|
70
|
-
- Enable: **Google Drive API**, **Google Docs API**, **Google Sheets API**, **Google Slides API**
|
|
70
|
+
- Enable: **Google Drive API**, **Google Docs API**, **Google Sheets API**, **Google Slides API**, **Google Calendar API**, **Gmail API**, **People API**
|
|
71
71
|
|
|
72
72
|
### 3. Configure OAuth Consent Screen
|
|
73
73
|
|
|
@@ -75,7 +75,7 @@ Create a presentation called "Product Roadmap" with slides for Q1 milestones.
|
|
|
75
75
|
- Fill in app name, support email, and developer contact
|
|
76
76
|
- Choose "External" (or "Internal" for Workspace)
|
|
77
77
|
- Add your email as a test user
|
|
78
|
-
- Add scopes: `drive.file`, `documents`, `spreadsheets`, `presentations`, `drive`, `drive.readonly`
|
|
78
|
+
- Add scopes: `drive.file`, `documents`, `spreadsheets`, `presentations`, `drive`, `drive.readonly`, `calendar`, `gmail.modify`, `gmail.labels`, `contacts`
|
|
79
79
|
|
|
80
80
|
### 4. Create OAuth 2.0 Credentials
|
|
81
81
|
|
|
@@ -138,7 +138,7 @@ To enable additional services, add them to `GOOGLE_WORKSPACE_SERVICES`:
|
|
|
138
138
|
}
|
|
139
139
|
```
|
|
140
140
|
|
|
141
|
-
**Available services:** `drive`, `docs`, `sheets`, `slides`, `calendar`, `gmail`
|
|
141
|
+
**Available services:** `drive`, `docs`, `sheets`, `slides`, `calendar`, `gmail`, `contacts`
|
|
142
142
|
|
|
143
143
|
- Omit `GOOGLE_WORKSPACE_SERVICES` entirely to enable all services
|
|
144
144
|
- Unified tools (`create_file`, `update_file`, `get_file_content`) require `drive`, `docs`, `sheets`, and `slides`
|
|
@@ -171,6 +171,10 @@ See [Advanced Configuration](docs/ADVANCED.md) for multi-account setup and envir
|
|
|
171
171
|
|
|
172
172
|
`sendEmail` `draftEmail` `readEmail` `searchEmails` `deleteEmail` `modifyEmail` `downloadAttachment` `listLabels` `getOrCreateLabel` `updateLabel` `deleteLabel` `createFilter` `listFilters` `deleteFilter`
|
|
173
173
|
|
|
174
|
+
### Contacts (6 tools)
|
|
175
|
+
|
|
176
|
+
`listContacts` `getContact` `searchContacts` `createContact` `updateContact` `deleteContact`
|
|
177
|
+
|
|
174
178
|
### Unified (3 tools)
|
|
175
179
|
|
|
176
180
|
`createFile` `updateFile` `getFileContent`
|