google-tools-mcp 1.0.15 → 1.0.16
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.
|
@@ -7,6 +7,7 @@ export function register(server) {
|
|
|
7
7
|
name: 'get_events',
|
|
8
8
|
description:
|
|
9
9
|
'Retrieves events from a Google Calendar. Can get a single event by ID, or list events in a time range with optional search. ' +
|
|
10
|
+
'By default only returns future events (time_min defaults to now). To retrieve past events, set time_min to a past date (e.g. "2025-01-01T00:00:00Z"). ' +
|
|
10
11
|
'Use calendar_id to query another user\'s calendar (requires sharing) or "primary" for the authenticated user.',
|
|
11
12
|
parameters: z.object({
|
|
12
13
|
calendar_id: z
|
|
@@ -8,7 +8,9 @@ export function register(server) {
|
|
|
8
8
|
description:
|
|
9
9
|
'Lists individual occurrences of a recurring event. Use this to find specific instances ' +
|
|
10
10
|
'you want to modify or cancel (e.g. "cancel next Tuesday\'s standup"). ' +
|
|
11
|
-
'Each instance has its own event ID that you can pass to manage_event.'
|
|
11
|
+
'Each instance has its own event ID that you can pass to manage_event. ' +
|
|
12
|
+
'By default only returns future instances (time_min defaults to now). To retrieve past instances, set time_min to a past date. ' +
|
|
13
|
+
'Note: all parameters use snake_case (event_id, time_min, time_max), not camelCase.',
|
|
12
14
|
parameters: z.object({
|
|
13
15
|
calendar_id: z
|
|
14
16
|
.string()
|