gogcli-mcp-calendar 2.0.6
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 +60 -0
- package/SKILL.md +44 -0
- package/dist/index.js +31252 -0
- package/manifest.json +140 -0
- package/package.json +42 -0
- package/src/index.ts +12 -0
- package/src/tools/calendar-extra.ts +99 -0
- package/tests/tools/calendar-extra.test.ts +132 -0
- package/tsconfig.json +9 -0
- package/vitest.config.ts +17 -0
package/README.md
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# gogcli-mcp-calendar
|
|
2
|
+
|
|
3
|
+
> [!WARNING]
|
|
4
|
+
> **AI-developed project.** This codebase was built and is actively maintained by [Claude Code](https://www.anthropic.com/claude). Review all code and tool permissions before use.
|
|
5
|
+
|
|
6
|
+
Extended Google Calendar [MCP](https://modelcontextprotocol.io) server via [gogcli](https://github.com/steipete/gogcli). Includes auth tools plus the base Calendar tools and 6 additional dedicated Google Meet tools for space management.
|
|
7
|
+
|
|
8
|
+
## Requirements
|
|
9
|
+
|
|
10
|
+
- [gogcli](https://github.com/steipete/gogcli) installed and authenticated
|
|
11
|
+
- Node.js 18+
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
brew install gogcli
|
|
15
|
+
gog auth add your@gmail.com --services calendar,meet
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Installation
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npm install -g gogcli-mcp-calendar
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
### Claude Desktop
|
|
25
|
+
|
|
26
|
+
```json
|
|
27
|
+
{
|
|
28
|
+
"mcpServers": {
|
|
29
|
+
"gogcli-calendar": {
|
|
30
|
+
"command": "gogcli-mcp-calendar",
|
|
31
|
+
"env": {
|
|
32
|
+
"GOG_ACCOUNT": "you@gmail.com"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### Claude Code
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
claude mcp add gogcli-calendar -- gogcli-mcp-calendar
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Extra Meet Tools (6)
|
|
46
|
+
|
|
47
|
+
Plus 5 auth tools and 7 base Calendar tools (events, get, create, update, delete, respond, run).
|
|
48
|
+
|
|
49
|
+
| Tool | Description |
|
|
50
|
+
|------|-------------|
|
|
51
|
+
| `gog_meet_create` | Create a Google Meet space |
|
|
52
|
+
| `gog_meet_get` | Get a Meet space by meeting code |
|
|
53
|
+
| `gog_meet_update` | Update Meet space configuration (access type) |
|
|
54
|
+
| `gog_meet_end` | End the active conference in a Meet space |
|
|
55
|
+
| `gog_meet_history` | List past calls in a Meet space |
|
|
56
|
+
| `gog_meet_participants` | List participants from a Meet call |
|
|
57
|
+
|
|
58
|
+
## License
|
|
59
|
+
|
|
60
|
+
MIT
|
package/SKILL.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: gogcli-mcp-calendar
|
|
3
|
+
description: Use when the user asks to manage Google Calendar events or Google Meet spaces. Triggers for scheduling, listing events, creating/updating/deleting events, responding to invitations, creating Meet spaces, ending conferences, listing meeting participants or call history.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# gogcli-mcp-calendar
|
|
7
|
+
|
|
8
|
+
Extended Google Calendar MCP server via [gogcli](https://github.com/steipete/gogcli) — 18 tools: auth + 7 base Calendar + 6 extra Meet tools.
|
|
9
|
+
|
|
10
|
+
- **Source:** [github.com/chrischall/gogcli-mcp](https://github.com/chrischall/gogcli-mcp)
|
|
11
|
+
|
|
12
|
+
## Requirements
|
|
13
|
+
|
|
14
|
+
- [gogcli](https://github.com/steipete/gogcli) installed and authenticated
|
|
15
|
+
- Node.js 18 or later
|
|
16
|
+
|
|
17
|
+
## Setup
|
|
18
|
+
|
|
19
|
+
```json
|
|
20
|
+
{
|
|
21
|
+
"mcpServers": {
|
|
22
|
+
"gogcli-calendar": {
|
|
23
|
+
"command": "npx",
|
|
24
|
+
"args": ["-y", "gogcli-mcp-calendar"],
|
|
25
|
+
"env": {
|
|
26
|
+
"GOG_ACCOUNT": "you@gmail.com"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Extra Meet Tools
|
|
34
|
+
|
|
35
|
+
| Tool | What it does |
|
|
36
|
+
|------|-------------|
|
|
37
|
+
| `gog_meet_create` | Create a Meet space |
|
|
38
|
+
| `gog_meet_get` | Get a Meet space by code |
|
|
39
|
+
| `gog_meet_update` | Update Meet space config |
|
|
40
|
+
| `gog_meet_end` | End the active conference |
|
|
41
|
+
| `gog_meet_history` | List past calls in a space |
|
|
42
|
+
| `gog_meet_participants` | List call participants |
|
|
43
|
+
|
|
44
|
+
Plus 5 auth tools and 7 base Calendar tools (`gog_calendar_events/get/create/update/delete/respond/run`).
|