@dguido/google-workspace-mcp 1.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/package.json ADDED
@@ -0,0 +1,74 @@
1
+ {
2
+ "name": "@dguido/google-workspace-mcp",
3
+ "version": "1.0.0",
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",
5
+ "keywords": [
6
+ "ai",
7
+ "claude",
8
+ "document-automation",
9
+ "file-management",
10
+ "google-calendar",
11
+ "google-docs",
12
+ "google-drive",
13
+ "google-gmail",
14
+ "google-sheets",
15
+ "google-slides",
16
+ "google-workspace",
17
+ "integration",
18
+ "llm",
19
+ "mcp",
20
+ "model-context-protocol",
21
+ "oauth2"
22
+ ],
23
+ "homepage": "https://github.com/dguido/google-workspace-mcp",
24
+ "bugs": "https://github.com/dguido/google-workspace-mcp/issues",
25
+ "license": "MIT",
26
+ "author": "Dan Guido <dan@trailofbits.com>",
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/dguido/google-workspace-mcp.git"
30
+ },
31
+ "bin": {
32
+ "google-workspace-mcp": "dist/index.js"
33
+ },
34
+ "files": [
35
+ "LICENSE",
36
+ "README.md",
37
+ "dist/"
38
+ ],
39
+ "type": "module",
40
+ "scripts": {
41
+ "typecheck": "tsc --noEmit",
42
+ "build": "npm run typecheck && node scripts/build.js",
43
+ "start": "node dist/index.js",
44
+ "auth": "node dist/index.js auth",
45
+ "watch": "node scripts/build.js --watch",
46
+ "prepare": "npm run build",
47
+ "test": "vitest run",
48
+ "test:watch": "vitest",
49
+ "test:coverage": "vitest run --coverage",
50
+ "lint": "oxlint .",
51
+ "format": "oxfmt .",
52
+ "format:check": "oxfmt --check .",
53
+ "check": "npm run typecheck && npm run lint && npm run format:check"
54
+ },
55
+ "dependencies": {
56
+ "@modelcontextprotocol/sdk": "1.25.2",
57
+ "google-auth-library": "10.5.0",
58
+ "googleapis": "170.1.0",
59
+ "open": "11.0.0",
60
+ "zod": "^4.0.0"
61
+ },
62
+ "devDependencies": {
63
+ "@types/node": "25.0.7",
64
+ "@vitest/coverage-v8": "4.0.17",
65
+ "esbuild": "0.27.2",
66
+ "oxfmt": "^0.24.0",
67
+ "oxlint": "1.39.0",
68
+ "typescript": "5.9.3",
69
+ "vitest": "4.0.17"
70
+ },
71
+ "engines": {
72
+ "node": ">=22.0.0"
73
+ }
74
+ }