google-tools-mcp 1.2.8 → 1.2.10
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 +21 -6
- package/dist/auth.js +343 -325
- package/dist/clients.js +293 -213
- package/dist/index.js +85 -74
- package/dist/setup.js +453 -235
- package/dist/tools/sheets/deleteColumns.js +66 -0
- package/dist/tools/sheets/index.js +2 -0
- package/dist/tools/sheets/ungroupAllRows.js +6 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -36,7 +36,7 @@ The wizard walks you through:
|
|
|
36
36
|
3. Creating OAuth credentials
|
|
37
37
|
4. Authenticating with Google
|
|
38
38
|
|
|
39
|
-
|
|
39
|
+
The setup wizard can add the MCP server to Codex or Claude Code automatically when their CLIs are installed. You can also add it manually later (see [Step 3](#step-3-add-to-your-mcp-client) below).
|
|
40
40
|
|
|
41
41
|
### Manual Setup
|
|
42
42
|
|
|
@@ -107,11 +107,26 @@ Add the credentials directly to your MCP configuration:
|
|
|
107
107
|
|
|
108
108
|
</details>
|
|
109
109
|
|
|
110
|
-
### Step 3: Add to Your MCP Client
|
|
111
|
-
|
|
112
|
-
####
|
|
113
|
-
|
|
114
|
-
|
|
110
|
+
### Step 3: Add to Your MCP Client
|
|
111
|
+
|
|
112
|
+
#### Codex
|
|
113
|
+
|
|
114
|
+
```bash
|
|
115
|
+
codex mcp add google -- npx -y google-tools-mcp
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
With env vars (Option C):
|
|
119
|
+
|
|
120
|
+
```bash
|
|
121
|
+
codex mcp add google \
|
|
122
|
+
--env GOOGLE_CLIENT_ID=your-client-id \
|
|
123
|
+
--env GOOGLE_CLIENT_SECRET=your-client-secret \
|
|
124
|
+
-- npx -y google-tools-mcp
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
#### Claude Code
|
|
128
|
+
|
|
129
|
+
**User-scope** (available in all projects):
|
|
115
130
|
|
|
116
131
|
```bash
|
|
117
132
|
claude mcp add -s user google -- npx -y google-tools-mcp
|