@trops/dash-core 0.1.68 → 0.1.70

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.
@@ -220,29 +220,31 @@
220
220
  {
221
221
  "id": "gmail",
222
222
  "name": "Gmail",
223
- "description": "Search, read, send, and manage Gmail messages and threads.",
223
+ "description": "Search, read, send, and manage Gmail messages, threads, labels, and drafts.",
224
224
  "icon": "envelope",
225
225
  "tags": ["google", "email", "communication"],
226
226
  "mcpConfig": {
227
227
  "transport": "stdio",
228
228
  "command": "npx",
229
- "args": ["-y", "@shinzolabs/gmail-mcp"],
230
- "envMapping": {
231
- "GMAIL_OAUTH_PATH": "oauthKeysPath"
232
- }
229
+ "args": ["-y", "@gongrzhe/server-gmail-autoauth-mcp"]
233
230
  },
234
231
  "authCommand": {
235
232
  "command": "npx",
236
- "args": ["-y", "@shinzolabs/gmail-mcp", "auth"],
237
- "env": { "AUTH_SERVER_PORT": "3456" }
233
+ "args": ["-y", "@gongrzhe/server-gmail-autoauth-mcp", "auth"],
234
+ "setup": {
235
+ "copyCredential": {
236
+ "from": "oauthKeysPath",
237
+ "to": "~/.gmail-mcp/gcp-oauth.keys.json"
238
+ }
239
+ }
238
240
  },
239
241
  "credentialSchema": {
240
242
  "oauthKeysPath": {
241
243
  "type": "file",
242
244
  "displayName": "OAuth Keys File",
243
- "required": false,
245
+ "required": true,
244
246
  "secret": false,
245
- "instructions": "Path to your Google OAuth keys file (gcp-oauth.keys.json). Enable the Gmail API at console.cloud.google.com, create OAuth 2.0 credentials, and set the redirect URI to http://localhost:3456/oauth2callback."
247
+ "instructions": "Path to your Google OAuth keys file (gcp-oauth.keys.json). Enable the Gmail API at console.cloud.google.com, create OAuth 2.0 credentials (Desktop app type), and download the JSON file."
246
248
  }
247
249
  }
248
250
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trops/dash-core",
3
- "version": "0.1.68",
3
+ "version": "0.1.70",
4
4
  "description": "Core framework for Dash dashboard applications",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",