-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.36 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.36 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "agent-gsuite",
"version": "1.0.19",
"description": "Google Workspace MCP Server with Agent Skills",
"type": "module",
"main": "index.js",
"bin": {
"agent-gsuite": "cli.js",
"agent-gsuite-mcp": "stdio-server.js",
"agent-gsuite-http": "http-server.js"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"start": "node http-server.js --port 3000 --host 0.0.0.0",
"http": "node http-server.js",
"bun:start": "bun run http-server.js --port 3000 --host 0.0.0.0",
"bun:http": "bun run http-server.js",
"bun:install": "bun install"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"google-auth-library": "^10.6.1",
"googleapis": "^171.4.0",
"open": "^10.0.3"
},
"agents": {
"agent-gsuite": "skills/agent-gsuite"
},
"files": [
"index.js",
"cli.js",
"cli-handlers-docs.js",
"cli-handlers-sheets.js",
"cli-handlers-other.js",
"cli-utils.js",
"auth.js",
"oauth-auth.js",
"oauth-server.js",
"oauth-handlers.js",
"oauth-html.js",
"http-server.js",
"http-routes.js",
"http-session.js",
"stdio-server.js",
"mcp-server.js",
"mcp-transport.js",
"mcp-resources.js",
"apps-metadata.js",
"tools.js",
"handlers.js",
"handlers-sheets.js",
"handlers-gmail.js",
"handlers-utils.js",
"handlers-calendar.js",
"handlers-tasks.js",
"handlers-slides.js",
"handlers-contacts.js",
"calendar.js",
"calendar-tools.js",
"tasks.js",
"tasks-tools.js",
"slides.js",
"slides-tools.js",
"contacts.js",
"contacts-tools.js",
"chat.js",
"chat-tools.js",
"handlers-chat.js",
"search.js",
"search-tools.js",
"handlers-search.js",
"google-clients.js",
"text-utils.js",
"docs.js",
"docs-core.js",
"docs-edit.js",
"docs-format.js",
"docs-media.js",
"docs-sections.js",
"gmail.js",
"gmail-manage.js",
"scripts.js",
"scripts-api.js",
"scripts-helpers.js",
"sdk.js",
"sheets.js",
"sheets-core.js",
"sheets-format.js",
"sheets-structure.js",
"sheets-tabs.js",
"package.json",
"skills/agent-gsuite/",
"skills/docmcp/",
"README.md"
],
"license": "MIT",
"devDependencies": {
"playwright": "^1.58.2"
}
}