This repository was archived by the owner on Mar 11, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.17 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@dguido/google-workspace-mcp",
"version": "3.4.4",
"description": "Google Workspace MCP Server - Model Context Protocol server providing secure access to Google Drive, Docs, Sheets, Slides, Calendar, and Gmail through MCP clients e.g. Claude Desktop",
"keywords": [
"ai",
"claude",
"document-automation",
"file-management",
"google-calendar",
"google-docs",
"google-drive",
"google-gmail",
"google-sheets",
"google-slides",
"google-workspace",
"integration",
"llm",
"mcp",
"model-context-protocol",
"oauth2"
],
"homepage": "https://github.com/dguido/google-workspace-mcp",
"bugs": "https://github.com/dguido/google-workspace-mcp/issues",
"license": "MIT",
"author": "Dan Guido <dan@trailofbits.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/dguido/google-workspace-mcp.git"
},
"bin": {
"google-workspace-mcp": "dist/index.js"
},
"files": [
"LICENSE",
"README.md",
"dist/"
],
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"build": "npm run typecheck && node scripts/build.js",
"start": "node dist/index.js",
"auth": "node dist/index.js auth",
"watch": "node scripts/build.js --watch",
"prepare": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "oxlint .",
"lint:types": "oxlint --type-aware .",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"check": "npm run typecheck && npm run lint:types && npm run format:check"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.27.1",
"@toon-format/toon": "^2.1.0",
"async-mutex": "0.5.0",
"fflate": "0.8.2",
"google-auth-library": "10.6.1",
"googleapis": "171.4.0",
"open": "11.0.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@types/node": "25.3.3",
"@vitest/coverage-v8": "4.0.18",
"esbuild": "0.27.3",
"oxfmt": "^0.36.0",
"oxlint": "1.51.0",
"oxlint-tsgolint": "0.16.0",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"overrides": {
"hono": "4.11.10"
},
"engines": {
"node": ">=22.0.0"
}
}