@kembec/gcal-mcp-linux-x64 0.1.2 → 0.1.5
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 +15 -1
- package/bin/gcal-mcp +0 -0
- package/package.json +7 -3
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ MCP server for Google Calendar. Single Rust binary, no daemon, handles OAuth2 PK
|
|
|
12
12
|
npm install -g @kembec/gcal-mcp
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
-
Supported targets: `darwin-arm64`, `darwin-x64`, `linux-x64`, `win32-x64`.
|
|
15
|
+
Supported targets: `darwin-arm64`, `darwin-x64`, `linux-x64`, `linux-arm64`, `win32-x64`.
|
|
16
16
|
|
|
17
17
|
Or build from source:
|
|
18
18
|
|
|
@@ -68,6 +68,20 @@ Or with `npx`:
|
|
|
68
68
|
}
|
|
69
69
|
```
|
|
70
70
|
|
|
71
|
+
### Codex CLI
|
|
72
|
+
|
|
73
|
+
Add to `~/.codex/config.toml`:
|
|
74
|
+
|
|
75
|
+
```toml
|
|
76
|
+
[mcp_servers.gcal]
|
|
77
|
+
command = "npx"
|
|
78
|
+
args = ["-y", "@kembec/gcal-mcp"]
|
|
79
|
+
enabled = true
|
|
80
|
+
|
|
81
|
+
[mcp_servers.gcal.env]
|
|
82
|
+
GOOGLE_OAUTH_CREDENTIALS = "/path/to/client_secret.json"
|
|
83
|
+
```
|
|
84
|
+
|
|
71
85
|
## Tools
|
|
72
86
|
|
|
73
87
|
| Tool | Description |
|
package/bin/gcal-mcp
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kembec/gcal-mcp-linux-x64",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "gcal-mcp binary for linux x64",
|
|
5
|
-
"os": [
|
|
6
|
-
|
|
5
|
+
"os": [
|
|
6
|
+
"linux"
|
|
7
|
+
],
|
|
8
|
+
"cpu": [
|
|
9
|
+
"x64"
|
|
10
|
+
],
|
|
7
11
|
"bin": {
|
|
8
12
|
"gcal-mcp": "bin/gcal-mcp"
|
|
9
13
|
},
|