@chronary/toolkit 1.0.1 → 1.1.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.
@@ -29,72 +29,90 @@ var import_sdk2 = require("@chronary/sdk");
29
29
 
30
30
  // src/schemas.ts
31
31
  var import_zod = require("zod");
32
+ var WEBHOOK_EVENT_TYPES = [
33
+ "agent.created",
34
+ "agent.updated",
35
+ "event.created",
36
+ "event.updated",
37
+ "event.deleted",
38
+ "event.started",
39
+ "event.ended",
40
+ "event.reminder",
41
+ "event.hold_created",
42
+ "event.hold_expired",
43
+ "event.hold_released",
44
+ "event.hold_confirmed",
45
+ "proposal.created",
46
+ "proposal.responded",
47
+ "proposal.confirmed",
48
+ "proposal.expired",
49
+ "proposal.cancelled",
50
+ "webhook.deactivated"
51
+ ];
52
+ var WEBHOOK_DELIVERY_STATUSES = ["pending", "delivered", "failed"];
32
53
  var ListCalendarsSchema = import_zod.z.object({
33
- agent_id: import_zod.z.string().optional().describe("Filter calendars by agent ID"),
34
- include: import_zod.z.enum(["all"]).optional().describe('Set to "all" to include soft-deleted calendars'),
35
- limit: import_zod.z.number().int().min(1).max(200).optional().describe("Max results per page (default 50)"),
36
- offset: import_zod.z.number().int().min(0).optional().describe("Pagination offset (default 0)")
54
+ include: import_zod.z.enum(["all"]).optional().describe('Pass "all" to include calendars across all agents (org keys only)'),
55
+ limit: import_zod.z.number().int().min(1).max(200).default(50).describe("Max results to return"),
56
+ offset: import_zod.z.number().int().min(0).default(0).describe("Pagination offset")
37
57
  });
38
58
  var GetCalendarSchema = import_zod.z.object({
39
- calendar_id: import_zod.z.string().describe("The calendar ID to retrieve")
59
+ calendar_id: import_zod.z.string().describe("Calendar ID to fetch")
40
60
  });
41
61
  var CreateCalendarSchema = import_zod.z.object({
42
- name: import_zod.z.string().describe("Calendar name"),
43
- timezone: import_zod.z.string().describe('IANA timezone (e.g., "America/New_York")'),
44
- agent_id: import_zod.z.string().optional().describe("Agent ID to associate the calendar with"),
45
- default_reminders: import_zod.z.array(import_zod.z.number().int().min(1).max(40320)).max(5).nullable().optional().describe("Default reminder offsets in minutes before start, inherited by events that don't set their own (e.g. [10, 1440]). null/omit = system default (10 min); [] = no reminders. Max 5, each 1\u201340320."),
46
- metadata: import_zod.z.record(import_zod.z.string(), import_zod.z.unknown()).optional().describe("Arbitrary key-value metadata")
62
+ name: import_zod.z.string().min(1).max(255).describe("Calendar name"),
63
+ agent_id: import_zod.z.string().optional().describe("Agent ID to own this calendar (omit for org-level)"),
64
+ timezone: import_zod.z.string().min(1).describe("IANA timezone (e.g. America/New_York)"),
65
+ default_reminders: import_zod.z.array(import_zod.z.number().int().min(1).max(40320)).max(5).nullable().optional().describe("Default reminder offsets in minutes before start, inherited by events on this calendar that don't set their own. Omit or null to use the system default (10 min); [] for no reminders.")
47
66
  });
48
67
  var UpdateCalendarSchema = import_zod.z.object({
49
- calendar_id: import_zod.z.string().describe("The calendar ID to update"),
50
- name: import_zod.z.string().optional().describe("New calendar name"),
51
- timezone: import_zod.z.string().optional().describe("New IANA timezone"),
52
- default_reminders: import_zod.z.array(import_zod.z.number().int().min(1).max(40320)).max(5).nullable().optional().describe("New default reminder offsets in minutes before start. null = system default (10 min); [] = no reminders. Max 5, each 1\u201340320."),
53
- metadata: import_zod.z.record(import_zod.z.string(), import_zod.z.unknown()).optional().describe("Updated metadata")
68
+ calendar_id: import_zod.z.string().describe("Calendar ID to update"),
69
+ name: import_zod.z.string().min(1).max(255).optional().describe("New calendar name"),
70
+ timezone: import_zod.z.string().min(1).optional().describe("New IANA timezone (e.g. America/New_York)"),
71
+ agent_status: import_zod.z.enum(["idle", "working", "waiting", "error"]).optional().describe("Owning agent's status"),
72
+ default_reminders: import_zod.z.array(import_zod.z.number().int().min(1).max(40320)).max(5).nullable().optional().describe("Default reminder offsets in minutes; null for system default, [] for none"),
73
+ metadata: import_zod.z.record(import_zod.z.string(), import_zod.z.unknown()).optional().describe("Arbitrary metadata (max 16KB)")
54
74
  });
55
75
  var DeleteCalendarSchema = import_zod.z.object({
56
- calendar_id: import_zod.z.string().describe("The calendar ID to delete")
76
+ calendar_id: import_zod.z.string().describe("Calendar ID to delete")
57
77
  });
58
78
  var ListEventsSchema = import_zod.z.object({
59
- calendar_id: import_zod.z.string().optional().describe("Calendar ID to list events from (provide this or agent_id)"),
60
- agent_id: import_zod.z.string().optional().describe("Agent ID to list events for (provide this or calendar_id)"),
61
- start_after: import_zod.z.string().optional().describe("Only events starting after this ISO 8601 datetime"),
62
- start_before: import_zod.z.string().optional().describe("Only events starting before this ISO 8601 datetime"),
63
- status: import_zod.z.enum(["confirmed", "tentative", "cancelled"]).optional().describe("Filter by event status"),
64
- source: import_zod.z.enum(["internal", "external_ical"]).optional().describe("Filter by event source"),
65
- limit: import_zod.z.number().int().min(1).max(200).optional().describe("Max results per page (default 50)"),
66
- offset: import_zod.z.number().int().min(0).optional().describe("Pagination offset (default 0)")
79
+ calendar_id: import_zod.z.string().describe("Calendar ID to list events from"),
80
+ start_after: import_zod.z.string().datetime().optional().describe("Filter events starting after this time"),
81
+ start_before: import_zod.z.string().datetime().optional().describe("Filter events starting before this time"),
82
+ limit: import_zod.z.number().int().min(1).max(200).default(50).describe("Max results to return"),
83
+ offset: import_zod.z.number().int().min(0).default(0).describe("Pagination offset")
67
84
  });
68
85
  var GetEventSchema = import_zod.z.object({
69
- calendar_id: import_zod.z.string().describe("Calendar ID the event belongs to"),
70
- event_id: import_zod.z.string().describe("The event ID to retrieve")
86
+ event_id: import_zod.z.string().describe("Event ID to retrieve"),
87
+ calendar_id: import_zod.z.string().describe("Calendar ID that owns the event. Required \u2014 the SDK is calendar-scoped (unlike the hosted MCP, which can resolve the calendar from event_id).")
71
88
  });
72
89
  var CreateEventSchema = import_zod.z.object({
73
- calendar_id: import_zod.z.string().describe("Calendar ID to create the event on"),
74
- title: import_zod.z.string().describe("Event title"),
75
- start_time: import_zod.z.string().describe("Start time in ISO 8601 format"),
76
- end_time: import_zod.z.string().describe("End time in ISO 8601 format"),
77
- description: import_zod.z.string().optional().describe("Event description"),
78
- all_day: import_zod.z.boolean().optional().describe("Whether this is an all-day event"),
79
- status: import_zod.z.enum(["confirmed", "tentative", "cancelled"]).optional().describe('Event status (default "confirmed")'),
80
- reminders: import_zod.z.array(import_zod.z.number().int().min(1).max(40320)).max(5).nullable().optional().describe("Reminder offsets in minutes before start (e.g. [10, 1440]). Each fires an event.reminder webhook. null/omit = inherit calendar default (then 10 min); [] = no reminders. Max 5, each 1\u201340320."),
81
- metadata: import_zod.z.record(import_zod.z.string(), import_zod.z.unknown()).optional().describe("Arbitrary key-value metadata")
90
+ calendar_id: import_zod.z.string().describe("Calendar ID to add the event to"),
91
+ title: import_zod.z.string().min(1).max(500).describe("Event title"),
92
+ start_time: import_zod.z.string().datetime().describe("Start time (ISO 8601)"),
93
+ end_time: import_zod.z.string().datetime().describe("End time (ISO 8601)"),
94
+ description: import_zod.z.string().optional().describe("Optional event description"),
95
+ all_day: import_zod.z.boolean().default(false).describe("Whether this is an all-day event"),
96
+ status: import_zod.z.enum(["confirmed", "tentative", "hold"]).optional().describe('Event status. "hold" creates a tentative reservation that auto-expires at hold_expires_at. Defaults to "confirmed".'),
97
+ reminders: import_zod.z.array(import_zod.z.number().int().min(1).max(40320)).max(5).nullable().optional().describe("Reminder offsets in minutes before start_time (e.g. [10, 1440]). Each fires an event.reminder webhook and shows as an alarm in the iCal feed. Omit or null to inherit the calendar default (then the system default of 10 min); [] for no reminders."),
98
+ hold_expires_at: import_zod.z.string().datetime().optional().describe('Required when status="hold". ISO 8601 timestamp 30s-15min in the future. Auto-releases the hold when reached.'),
99
+ hold_priority: import_zod.z.number().int().min(0).max(100).optional().describe('Only valid with status="hold". Higher-priority overlapping holds pre-empt lower-priority ones. Defaults to 0.')
82
100
  });
83
101
  var UpdateEventSchema = import_zod.z.object({
84
- calendar_id: import_zod.z.string().describe("Calendar ID the event belongs to"),
85
- event_id: import_zod.z.string().describe("The event ID to update"),
86
- title: import_zod.z.string().optional().describe("New event title"),
87
- description: import_zod.z.string().nullable().optional().describe("New description (null to clear)"),
88
- start_time: import_zod.z.string().optional().describe("New start time in ISO 8601 format"),
89
- end_time: import_zod.z.string().optional().describe("New end time in ISO 8601 format"),
102
+ event_id: import_zod.z.string().describe("Event ID to update"),
103
+ calendar_id: import_zod.z.string().describe("Calendar ID that owns the event. Required \u2014 the SDK is calendar-scoped (unlike the hosted MCP, which can resolve the calendar from event_id)."),
104
+ title: import_zod.z.string().min(1).max(500).optional().describe("New event title"),
105
+ description: import_zod.z.string().nullable().optional().describe("New description, or null to clear it"),
106
+ start_time: import_zod.z.string().datetime().optional().describe("New start time (ISO 8601)"),
107
+ end_time: import_zod.z.string().datetime().optional().describe("New end time (ISO 8601)"),
90
108
  all_day: import_zod.z.boolean().optional().describe("Whether this is an all-day event"),
91
109
  status: import_zod.z.enum(["confirmed", "tentative", "cancelled"]).optional().describe("New event status"),
92
- reminders: import_zod.z.array(import_zod.z.number().int().min(1).max(40320)).max(5).nullable().optional().describe("New reminder offsets in minutes before start. null = inherit calendar default; [] = no reminders. Max 5, each 1\u201340320."),
93
- metadata: import_zod.z.record(import_zod.z.string(), import_zod.z.unknown()).optional().describe("Updated metadata")
110
+ metadata: import_zod.z.record(import_zod.z.string(), import_zod.z.unknown()).optional().describe("Replacement metadata object"),
111
+ reminders: import_zod.z.array(import_zod.z.number().int().min(1).max(40320)).max(5).nullable().optional().describe("Reminder offsets in minutes before start_time. Omit to leave unchanged, null to inherit the calendar default, [] for no reminders.")
94
112
  });
95
113
  var CancelEventSchema = import_zod.z.object({
96
- calendar_id: import_zod.z.string().describe("Calendar ID that owns the event"),
97
- event_id: import_zod.z.string().describe("Event ID to cancel")
114
+ event_id: import_zod.z.string().describe("Event ID to cancel"),
115
+ calendar_id: import_zod.z.string().describe("Calendar ID that owns the event. Required \u2014 the SDK is calendar-scoped (unlike the hosted MCP, which can resolve the calendar from event_id).")
98
116
  });
99
117
  var ConfirmEventSchema = import_zod.z.object({
100
118
  event_id: import_zod.z.string().describe("Event ID of the hold to confirm")
@@ -105,14 +123,13 @@ var ReleaseEventSchema = import_zod.z.object({
105
123
  var CreateAgentSchema = import_zod.z.object({
106
124
  name: import_zod.z.string().min(1).max(255).describe("Display name for the agent"),
107
125
  type: import_zod.z.enum(["ai", "human", "resource"]).describe("Agent type"),
108
- description: import_zod.z.string().optional().describe("Optional description"),
109
- metadata: import_zod.z.record(import_zod.z.string(), import_zod.z.unknown()).optional().describe("Arbitrary key-value metadata")
126
+ description: import_zod.z.string().optional().describe("Optional description")
110
127
  });
111
128
  var ListAgentsSchema = import_zod.z.object({
112
129
  type: import_zod.z.enum(["ai", "human", "resource"]).optional().describe("Filter by agent type"),
113
130
  status: import_zod.z.enum(["active", "paused", "decommissioned"]).optional().describe("Filter by status"),
114
- limit: import_zod.z.number().int().min(1).max(200).optional().describe("Max results per page (default 50)"),
115
- offset: import_zod.z.number().int().min(0).optional().describe("Pagination offset (default 0)")
131
+ limit: import_zod.z.number().int().min(1).max(200).default(50).describe("Max results to return"),
132
+ offset: import_zod.z.number().int().min(0).default(0).describe("Pagination offset")
116
133
  });
117
134
  var GetAgentSchema = import_zod.z.object({
118
135
  agent_id: import_zod.z.string().describe("Agent ID to fetch")
@@ -129,27 +146,32 @@ var DeleteAgentSchema = import_zod.z.object({
129
146
  });
130
147
  var GetAvailabilitySchema = import_zod.z.object({
131
148
  agent_id: import_zod.z.string().describe("Agent ID to check availability for"),
132
- start: import_zod.z.string().describe("Range start (ISO 8601)"),
133
- end: import_zod.z.string().describe("Range end (ISO 8601)"),
134
- slot_duration: import_zod.z.enum(["15m", "30m", "45m", "1h", "2h"]).optional().describe('Minimum slot duration required (default "30m")'),
135
- include_busy: import_zod.z.boolean().optional().describe("Include busy blocks in response")
149
+ start: import_zod.z.string().datetime().optional().describe("Range start (ISO 8601). Alias: start_time."),
150
+ end: import_zod.z.string().datetime().optional().describe("Range end (ISO 8601). Alias: end_time."),
151
+ start_time: import_zod.z.string().datetime().optional().describe("Alias for `start` (matches REST events naming)."),
152
+ end_time: import_zod.z.string().datetime().optional().describe("Alias for `end` (matches REST events naming)."),
153
+ slot_duration: import_zod.z.enum(["15m", "30m", "45m", "1h", "2h"]).default("30m").describe("Minimum slot duration required \u2014 only free blocks at least this long are returned"),
154
+ include_busy: import_zod.z.boolean().default(false).describe("Include busy blocks in response")
136
155
  });
137
156
  var FindMeetingTimeSchema = import_zod.z.object({
138
- agents: import_zod.z.array(import_zod.z.string()).min(1).describe("Array of agent IDs to find common free time for. All agents must be free during the returned slots."),
139
- start: import_zod.z.string().describe("Search range start (ISO 8601)"),
140
- end: import_zod.z.string().describe("Search range end (ISO 8601)"),
141
- slot_duration: import_zod.z.enum(["15m", "30m", "45m", "1h", "2h"]).optional().describe('Minimum slot duration required (default "30m")'),
157
+ agents: import_zod.z.array(import_zod.z.string()).min(1).optional().describe("Array of agent IDs to find common free time for. All agents must be free during the returned slots. Alias: agent_ids."),
158
+ agent_ids: import_zod.z.array(import_zod.z.string()).min(1).optional().describe("Alias for `agents` (matches REST/scheduling-proposal naming)."),
159
+ start: import_zod.z.string().datetime().optional().describe("Search range start (ISO 8601). Alias: start_time."),
160
+ end: import_zod.z.string().datetime().optional().describe("Search range end (ISO 8601). Alias: end_time."),
161
+ start_time: import_zod.z.string().datetime().optional().describe("Alias for `start` (matches REST events naming)."),
162
+ end_time: import_zod.z.string().datetime().optional().describe("Alias for `end` (matches REST events naming)."),
163
+ slot_duration: import_zod.z.enum(["15m", "30m", "45m", "1h", "2h"]).default("30m").describe("Minimum slot duration required \u2014 only free blocks at least this long are returned"),
142
164
  calendars: import_zod.z.array(import_zod.z.string()).optional().describe("Additional shared calendar IDs to treat as busy"),
143
- include_busy: import_zod.z.boolean().optional().describe("Include per-agent busy blocks in response")
165
+ include_busy: import_zod.z.boolean().default(false).describe("Include per-agent busy blocks in response")
144
166
  });
145
167
  var GetCalendarContextSchema = import_zod.z.object({
146
168
  calendar_id: import_zod.z.string().describe("Calendar ID")
147
169
  });
148
170
  var proposalSlotSchema = import_zod.z.object({
149
- start_time: import_zod.z.string().describe("Slot start (ISO 8601)"),
150
- end_time: import_zod.z.string().describe("Slot end (ISO 8601)"),
151
- weight: import_zod.z.number().min(0).max(10).optional().describe("Preference weight (default 1.0)"),
152
- calendar_id: import_zod.z.string().optional().describe("Override calendar for this slot")
171
+ start_time: import_zod.z.string().datetime(),
172
+ end_time: import_zod.z.string().datetime(),
173
+ weight: import_zod.z.number().min(0).max(10).default(1).optional(),
174
+ calendar_id: import_zod.z.string().optional()
153
175
  });
154
176
  var CreateProposalSchema = import_zod.z.object({
155
177
  title: import_zod.z.string().min(1).max(500).describe("Short description of what the meeting is about"),
@@ -158,7 +180,7 @@ var CreateProposalSchema = import_zod.z.object({
158
180
  participant_agent_ids: import_zod.z.array(import_zod.z.string()).min(1).max(50).describe("Agent IDs invited to respond"),
159
181
  calendar_id: import_zod.z.string().describe("Calendar the resolved event will be created on"),
160
182
  slots: import_zod.z.array(proposalSlotSchema).min(1).max(20).describe("Candidate time slots (up to 20)"),
161
- expires_at: import_zod.z.string().optional().describe("Auto-cancel cutoff if unresolved (ISO 8601)")
183
+ expires_at: import_zod.z.string().datetime().optional().describe("Auto-cancel cutoff if unresolved")
162
184
  });
163
185
  var ListProposalsSchema = import_zod.z.object({
164
186
  status: import_zod.z.enum(["pending", "confirmed", "expired", "cancelled"]).optional().describe("Filter by proposal status"),
@@ -183,9 +205,10 @@ var ResolveProposalSchema = import_zod.z.object({
183
205
  var CancelProposalSchema = import_zod.z.object({
184
206
  proposal_id: import_zod.z.string().describe("Proposal to cancel")
185
207
  });
208
+ var timeOfDay = import_zod.z.string().regex(/^([01]\d|2[0-3]):[0-5]\d$/, "must be HH:MM in 24-hour time");
186
209
  var workingHoursDaySchema = import_zod.z.object({
187
- start: import_zod.z.string().regex(/^([01]\d|2[0-3]):[0-5]\d$/, "must be HH:MM in 24-hour time"),
188
- end: import_zod.z.string().regex(/^([01]\d|2[0-3]):[0-5]\d$/, "must be HH:MM in 24-hour time")
210
+ start: timeOfDay,
211
+ end: timeOfDay
189
212
  });
190
213
  var workingHoursSchema = import_zod.z.object({
191
214
  mon: workingHoursDaySchema.optional(),
@@ -198,10 +221,10 @@ var workingHoursSchema = import_zod.z.object({
198
221
  }).nullable();
199
222
  var SetAvailabilityRulesSchema = import_zod.z.object({
200
223
  calendar_id: import_zod.z.string().describe("Calendar to configure"),
201
- buffer_before_minutes: import_zod.z.number().int().min(0).max(120).optional().describe("Minutes of buffer before each event (0\u2013120)"),
202
- buffer_after_minutes: import_zod.z.number().int().min(0).max(120).optional().describe("Minutes of buffer after each event (0\u2013120)"),
203
- working_hours: workingHoursSchema.optional().describe("Per-day working hours map in the calendar's timezone; omit keys for off-days. Pass null to remove any working-hours constraint."),
204
- timezone: import_zod.z.string().min(1).max(64).optional().describe("IANA timezone used to interpret working_hours (e.g. America/New_York)")
224
+ buffer_before_minutes: import_zod.z.number().int().min(0).max(120).default(0).describe("Minutes of buffer before each event (0\u2013120)"),
225
+ buffer_after_minutes: import_zod.z.number().int().min(0).max(120).default(0).describe("Minutes of buffer after each event (0\u2013120)"),
226
+ working_hours: workingHoursSchema.default(null).describe("Per-day working hours map in the calendar's timezone; omit keys for off-days. Pass null to remove any working-hours constraint."),
227
+ timezone: import_zod.z.string().min(1).max(64).default("UTC").describe("IANA timezone used to interpret working_hours (e.g. America/New_York)")
205
228
  });
206
229
  var GetAvailabilityRulesSchema = import_zod.z.object({
207
230
  calendar_id: import_zod.z.string().describe("Calendar to read")
@@ -218,8 +241,8 @@ var RevokeScopedKeySchema = import_zod.z.object({
218
241
  key_id: import_zod.z.string().describe("ID of the scoped key to revoke")
219
242
  });
220
243
  var GetAuditLogSchema = import_zod.z.object({
221
- from: import_zod.z.string().optional().describe("Start of the window (ISO 8601). Silently clamped to the plan retention window if older."),
222
- to: import_zod.z.string().optional().describe("End of the window (ISO 8601)"),
244
+ from: import_zod.z.string().datetime({ offset: true }).optional().describe("Start of the window (ISO 8601). Silently clamped to the plan retention window if older."),
245
+ to: import_zod.z.string().datetime({ offset: true }).optional().describe("End of the window (ISO 8601)"),
223
246
  action: import_zod.z.string().min(1).max(64).optional().describe("Filter by action name (e.g. event.created)"),
224
247
  actor_key_prefix: import_zod.z.string().min(1).max(32).optional().describe("Filter by the API key prefix that performed the action"),
225
248
  cursor: import_zod.z.string().min(1).max(256).optional().describe("Opaque pagination cursor from a previous response"),
@@ -229,33 +252,40 @@ var AcceptTermsSchema = import_zod.z.object({
229
252
  tos_version: import_zod.z.string().min(1).describe("The terms-of-service version to accept; must match the current version")
230
253
  });
231
254
  var ListWebhooksSchema = import_zod.z.object({
232
- limit: import_zod.z.number().int().min(1).max(100).optional().describe("Max results per page (default 20)"),
233
- offset: import_zod.z.number().int().min(0).optional().describe("Pagination offset (default 0)")
255
+ limit: import_zod.z.number().int().min(1).max(100).default(20).describe("Max results to return"),
256
+ offset: import_zod.z.number().int().min(0).default(0).describe("Pagination offset")
234
257
  });
235
258
  var GetWebhookSchema = import_zod.z.object({
236
- webhook_id: import_zod.z.string().describe("The webhook ID to retrieve")
259
+ webhook_id: import_zod.z.string().describe("Webhook subscription to fetch")
237
260
  });
238
261
  var CreateWebhookSchema = import_zod.z.object({
239
- url: import_zod.z.string().describe("HTTPS URL to receive webhook payloads"),
240
- events: import_zod.z.array(import_zod.z.string()).describe('Event types to subscribe to (e.g., ["event.created", "event.updated"])')
262
+ url: import_zod.z.string().url().describe("HTTPS endpoint that will receive event deliveries"),
263
+ events: import_zod.z.array(import_zod.z.enum(WEBHOOK_EVENT_TYPES)).min(1).describe("Event types to subscribe to")
241
264
  });
242
265
  var UpdateWebhookSchema = import_zod.z.object({
243
- webhook_id: import_zod.z.string().describe("The webhook ID to update"),
244
- url: import_zod.z.string().optional().describe("New webhook URL"),
245
- events: import_zod.z.array(import_zod.z.string()).optional().describe("New event type subscriptions"),
246
- active: import_zod.z.boolean().optional().describe("Enable or disable the webhook")
266
+ webhook_id: import_zod.z.string().describe("Webhook subscription to update"),
267
+ url: import_zod.z.string().url().optional().describe("New HTTPS delivery endpoint"),
268
+ events: import_zod.z.array(import_zod.z.enum(WEBHOOK_EVENT_TYPES)).min(1).optional().describe("Replacement set of event types to subscribe to"),
269
+ active: import_zod.z.boolean().optional().describe("Set false to pause deliveries, true to resume")
247
270
  });
248
271
  var DeleteWebhookSchema = import_zod.z.object({
249
- webhook_id: import_zod.z.string().describe("The webhook ID to delete")
272
+ webhook_id: import_zod.z.string().describe("Webhook subscription to delete")
273
+ });
274
+ var ListWebhookDeliveriesSchema = import_zod.z.object({
275
+ webhook_id: import_zod.z.string().describe("Webhook subscription whose deliveries to list"),
276
+ limit: import_zod.z.number().int().min(1).max(100).default(20).describe("Max results to return"),
277
+ offset: import_zod.z.number().int().min(0).default(0).describe("Pagination offset"),
278
+ status: import_zod.z.enum(WEBHOOK_DELIVERY_STATUSES).optional().describe("Filter to a single delivery status"),
279
+ include_payload: import_zod.z.boolean().optional().describe("Include the full event payload sent on each delivery")
250
280
  });
251
281
  var ListICalSubscriptionsSchema = import_zod.z.object({
252
- agent_id: import_zod.z.string().describe("Agent ID to list subscriptions for"),
282
+ agent_id: import_zod.z.string().describe("Agent ID whose iCal subscriptions to list"),
253
283
  status: import_zod.z.enum(["active", "error", "paused"]).optional().describe("Filter by subscription status"),
254
- limit: import_zod.z.number().int().min(1).max(200).optional().describe("Max results per page (default 50)"),
255
- offset: import_zod.z.number().int().min(0).optional().describe("Pagination offset (default 0)")
284
+ limit: import_zod.z.number().int().min(1).max(200).default(50).describe("Max results to return"),
285
+ offset: import_zod.z.number().int().min(0).default(0).describe("Pagination offset")
256
286
  });
257
287
  var GetICalSubscriptionSchema = import_zod.z.object({
258
- subscription_id: import_zod.z.string().describe("The iCal subscription ID to retrieve")
288
+ subscription_id: import_zod.z.string().describe("iCal subscription ID to fetch")
259
289
  });
260
290
  var SubscribeICalSchema = import_zod.z.object({
261
291
  agent_id: import_zod.z.string().describe("Agent ID that will own this subscription"),
@@ -263,23 +293,16 @@ var SubscribeICalSchema = import_zod.z.object({
263
293
  url: import_zod.z.string().url().describe("HTTPS URL of the iCal feed (.ics) to subscribe to"),
264
294
  label: import_zod.z.string().optional().describe("Optional label for this subscription")
265
295
  });
266
- var ListWebhookDeliveriesSchema = import_zod.z.object({
267
- webhook_id: import_zod.z.string().describe("Webhook subscription whose deliveries to list"),
268
- limit: import_zod.z.number().int().min(1).max(100).optional().describe("Max results to return (default 20)"),
269
- offset: import_zod.z.number().int().min(0).optional().describe("Pagination offset (default 0)"),
270
- status: import_zod.z.enum(["pending", "delivered", "failed"]).optional().describe("Filter to a single delivery status"),
271
- include_payload: import_zod.z.boolean().optional().describe("Include the full event payload sent on each delivery")
272
- });
273
296
  var UpdateICalSubscriptionSchema = import_zod.z.object({
274
- subscription_id: import_zod.z.string().describe("The iCal subscription ID to update"),
275
- label: import_zod.z.string().optional().describe("New label"),
276
- url: import_zod.z.string().optional().describe("New iCal feed URL")
297
+ subscription_id: import_zod.z.string().describe("iCal subscription ID to update"),
298
+ label: import_zod.z.string().min(1).max(255).optional().describe("New label for this subscription"),
299
+ url: import_zod.z.string().url().startsWith("https://", "URL must use HTTPS").optional().describe("New HTTPS URL of the iCal feed (.ics)")
277
300
  });
278
301
  var DeleteICalSubscriptionSchema = import_zod.z.object({
279
- subscription_id: import_zod.z.string().describe("The iCal subscription ID to delete")
302
+ subscription_id: import_zod.z.string().describe("iCal subscription ID to delete")
280
303
  });
281
304
  var SyncICalSubscriptionSchema = import_zod.z.object({
282
- subscription_id: import_zod.z.string().describe("The iCal subscription ID to sync immediately")
305
+ subscription_id: import_zod.z.string().describe("iCal subscription ID to sync")
283
306
  });
284
307
  var GetUsageSchema = import_zod.z.object({});
285
308
 
@@ -309,7 +332,7 @@ async function fetchPage(iterator, offset, limit) {
309
332
  }
310
333
  var listCalendars = safeFunc(async (ctx) => {
311
334
  const { client, params } = ctx;
312
- const iter = client.calendars.list({ agentId: params.agent_id, include: params.include, limit: params.limit });
335
+ const iter = client.calendars.list({ include: params.include, limit: params.limit });
313
336
  return fetchPage(iter, params.offset, params.limit);
314
337
  });
315
338
  var getCalendar = safeFunc(async (ctx) => {
@@ -338,11 +361,8 @@ var listEvents = safeFunc(async (ctx) => {
338
361
  const { client, params } = ctx;
339
362
  const iter = client.events.list({
340
363
  calendarId: params.calendar_id,
341
- agentId: params.agent_id,
342
364
  start_after: params.start_after,
343
365
  start_before: params.start_before,
344
- status: params.status,
345
- source: params.source,
346
366
  limit: params.limit
347
367
  });
348
368
  return fetchPage(iter, params.offset, params.limit);
@@ -392,15 +412,34 @@ var deleteAgent = safeFunc(async (ctx) => {
392
412
  });
393
413
  var getAvailability = safeFunc(async (ctx) => {
394
414
  const { client, params } = ctx;
415
+ const start = params.start ?? params.start_time;
416
+ const end = params.end ?? params.end_time;
417
+ if (!start || !end) {
418
+ throw new Error("start (or start_time) and end (or end_time) are required");
419
+ }
395
420
  return client.availability.forAgent(params.agent_id, {
396
- start: params.start,
397
- end: params.end,
421
+ start,
422
+ end,
398
423
  slot_duration: params.slot_duration,
399
424
  include_busy: params.include_busy
400
425
  });
401
426
  });
402
427
  var findMeetingTime = safeFunc(async (ctx) => {
403
- return ctx.client.availability.check(ctx.params);
428
+ const { client, params } = ctx;
429
+ const agents = params.agents ?? params.agent_ids;
430
+ const start = params.start ?? params.start_time;
431
+ const end = params.end ?? params.end_time;
432
+ if (!agents || !start || !end) {
433
+ throw new Error("agents (or agent_ids), start (or start_time), and end (or end_time) are required");
434
+ }
435
+ return client.availability.check({
436
+ agents,
437
+ start,
438
+ end,
439
+ slot_duration: params.slot_duration,
440
+ calendars: params.calendars,
441
+ include_busy: params.include_busy
442
+ });
404
443
  });
405
444
  var getCalendarContext = safeFunc(async (ctx) => {
406
445
  return ctx.client.calendars.getContext(ctx.params.calendar_id);
@@ -574,35 +613,35 @@ var TOOL_DEFINITIONS = [
574
613
  // ── Calendars ──────────────────────────────────────────────────
575
614
  {
576
615
  name: "list_calendars",
577
- description: "List calendars, optionally filtered by agent. Returns paginated results.",
616
+ description: "List calendars in the org. Org-level API keys see every calendar (agent-owned and shared); agent-scoped keys see only their own agent's calendars. Use this to discover calendar IDs before creating or listing events.",
578
617
  schema: ListCalendarsSchema,
579
618
  annotations: { title: "List Calendars", readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
580
619
  execute: createExecutor(listCalendars)
581
620
  },
582
621
  {
583
622
  name: "get_calendar",
584
- description: "Get a calendar by its ID, including its name, timezone, and iCal feed URL.",
623
+ description: "Fetch a single calendar by ID, including its name, timezone, agent status, and default reminders. Agent-scoped keys may only read calendars owned by their agent.",
585
624
  schema: GetCalendarSchema,
586
625
  annotations: { title: "Get Calendar", readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
587
626
  execute: createExecutor(getCalendar)
588
627
  },
589
628
  {
590
629
  name: "create_calendar",
591
- description: "Create a new calendar. Specify a name and IANA timezone. Optionally scope it to an agent.",
630
+ description: 'Create a calendar to hold events and track availability. Calendars are required before creating events \u2014 call this first when setting up a new agent. An agent can have multiple calendars (e.g. "Work", "Personal"). Org-level calendars (no agent_id) can be used as shared resources like meeting rooms.',
592
631
  schema: CreateCalendarSchema,
593
632
  annotations: { title: "Create Calendar", readOnlyHint: false, destructiveHint: false, idempotentHint: false, openWorldHint: false },
594
633
  execute: createExecutor(createCalendar)
595
634
  },
596
635
  {
597
636
  name: "update_calendar",
598
- description: "Update a calendar's name, timezone, or metadata.",
637
+ description: "Update a calendar's name, timezone, agent status, default reminders, or metadata. Agent-scoped keys may only update calendars owned by their agent.",
599
638
  schema: UpdateCalendarSchema,
600
639
  annotations: { title: "Update Calendar", readOnlyHint: false, destructiveHint: false, idempotentHint: true, openWorldHint: false },
601
640
  execute: createExecutor(updateCalendar)
602
641
  },
603
642
  {
604
643
  name: "delete_calendar",
605
- description: "Permanently delete a calendar and all its events.",
644
+ description: "Delete a calendar (soft delete). Its events are no longer returned and it stops contributing to availability. Agent-scoped keys may only delete calendars owned by their agent.",
606
645
  schema: DeleteCalendarSchema,
607
646
  annotations: { title: "Delete Calendar", readOnlyHint: false, destructiveHint: true, idempotentHint: true, openWorldHint: false },
608
647
  execute: createExecutor(deleteCalendar)
@@ -610,42 +649,42 @@ var TOOL_DEFINITIONS = [
610
649
  // ── Events ─────────────────────────────────────────────────────
611
650
  {
612
651
  name: "list_events",
613
- description: "List events on a calendar or for an agent. Supports date range and status filters. Provide calendar_id or agent_id.",
652
+ description: "List all events on a calendar, including internally created events and externally synced events from iCal subscriptions (e.g. Google Calendar, Outlook). Use start_after and start_before to query a specific time window.",
614
653
  schema: ListEventsSchema,
615
654
  annotations: { title: "List Events", readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
616
655
  execute: createExecutor(listEvents)
617
656
  },
618
657
  {
619
658
  name: "get_event",
620
- description: "Get a specific event by its calendar ID and event ID.",
659
+ description: "Retrieve a single event by ID, including its title, times, status, location, reminders, and metadata. Works for both internally created events and externally synced iCal events. `calendar_id` is optional \u2014 if omitted the calendar is resolved from the event. Provide `calendar_id` to fail fast on cross-calendar typos.",
621
660
  schema: GetEventSchema,
622
661
  annotations: { title: "Get Event", readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
623
662
  execute: createExecutor(getEvent)
624
663
  },
625
664
  {
626
665
  name: "create_event",
627
- description: "Create a new event on a calendar. The event blocks the agent's availability during the specified time window and appears in availability queries.",
666
+ description: `Create a booking, appointment, meeting, hold, or any scheduled event on a calendar. The calendar_id comes from create_calendar or list_events. Once created, this event blocks the agent's availability during that time and appears in availability queries. Use status="hold" with hold_expires_at to tentatively reserve a slot that auto-releases on TTL.`,
628
667
  schema: CreateEventSchema,
629
668
  annotations: { title: "Create Event", readOnlyHint: false, destructiveHint: false, idempotentHint: false, openWorldHint: false },
630
669
  execute: createExecutor(createEvent)
631
670
  },
632
671
  {
633
672
  name: "update_event",
634
- description: "Update an existing event's title, times, status, or other properties.",
673
+ description: "Reschedule or edit an event \u2014 change its title, description, start/end times, location, status, reminders, or metadata. Use this to move an appointment to a new time or update its details. Provide only the fields you want to change. Holds cannot be edited via this tool (use confirm_event / release_event). External iCal events are read-only. `calendar_id` is optional \u2014 if omitted it is resolved from the event.",
635
674
  schema: UpdateEventSchema,
636
675
  annotations: { title: "Update Event", readOnlyHint: false, destructiveHint: false, idempotentHint: true, openWorldHint: false },
637
676
  execute: createExecutor(updateEvent)
638
677
  },
639
678
  {
640
679
  name: "cancel_event",
641
- description: "Delete or cancel an event from a calendar. The event is marked cancelled and excluded from future availability calculations.",
680
+ description: "Delete or cancel an event from a calendar. Use this to remove, cancel, or delete any scheduled event or appointment. The event is marked cancelled and excluded from future availability calculations. `calendar_id` is optional \u2014 if omitted the calendar is looked up from the event. Provide `calendar_id` to fail fast on cross-calendar typos.",
642
681
  schema: CancelEventSchema,
643
682
  annotations: { title: "Cancel Event", readOnlyHint: false, destructiveHint: true, idempotentHint: true, openWorldHint: false },
644
683
  execute: createExecutor(cancelEvent)
645
684
  },
646
685
  {
647
686
  name: "confirm_event",
648
- description: 'Promote a held event to a confirmed booking. The event must currently have status="hold" and its hold_expires_at must not have passed.',
687
+ description: 'Promote a held event to a confirmed booking. The event must currently have status="hold" and its hold_expires_at must not have passed. After confirmation, event.started and event.ended lifecycle webhooks fire at the scheduled times.',
649
688
  schema: ConfirmEventSchema,
650
689
  annotations: { title: "Confirm Event", readOnlyHint: false, destructiveHint: false, idempotentHint: true, openWorldHint: false },
651
690
  execute: createExecutor(confirmEvent)
@@ -667,28 +706,28 @@ var TOOL_DEFINITIONS = [
667
706
  },
668
707
  {
669
708
  name: "list_agents",
670
- description: "List all agents in your organization. Returns paginated results.",
709
+ description: "List all agents in your organization",
671
710
  schema: ListAgentsSchema,
672
711
  annotations: { title: "List Agents", readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
673
712
  execute: createExecutor(listAgents)
674
713
  },
675
714
  {
676
715
  name: "get_agent",
677
- description: "Fetch a single agent by ID. An agent represents an AI assistant, human, or shared resource (e.g. a meeting room).",
716
+ description: "Fetch a single agent by ID. An agent represents an AI assistant, human, or shared resource (e.g. a meeting room). Agent-scoped API keys may only read their own agent.",
678
717
  schema: GetAgentSchema,
679
718
  annotations: { title: "Get Agent", readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
680
719
  execute: createExecutor(getAgent)
681
720
  },
682
721
  {
683
722
  name: "update_agent",
684
- description: "Update an agent's name, description, metadata, or status (active/paused). Requires an org-level API key.",
723
+ description: "Update an agent's name, description, metadata, or status (active/paused). Requires an org-level API key \u2014 agent-scoped keys cannot mutate agents.",
685
724
  schema: UpdateAgentSchema,
686
725
  annotations: { title: "Update Agent", readOnlyHint: false, destructiveHint: false, idempotentHint: true, openWorldHint: false },
687
726
  execute: createExecutor(updateAgent)
688
727
  },
689
728
  {
690
729
  name: "delete_agent",
691
- description: "Decommission an agent. This marks the agent as decommissioned and revokes all of its scoped API keys. Requires an org-level API key.",
730
+ description: "Decommission an agent. This marks the agent as decommissioned and revokes all of its scoped API keys. Requires an org-level API key \u2014 agent-scoped keys cannot delete agents.",
692
731
  schema: DeleteAgentSchema,
693
732
  annotations: { title: "Delete Agent", readOnlyHint: false, destructiveHint: true, idempotentHint: true, openWorldHint: false },
694
733
  execute: createExecutor(deleteAgent)
@@ -696,14 +735,14 @@ var TOOL_DEFINITIONS = [
696
735
  // ── Availability ───────────────────────────────────────────────
697
736
  {
698
737
  name: "get_availability",
699
- description: "Check when a single agent is free within a time range. Returns available time slots and optionally busy blocks.",
738
+ description: "Check when a single agent is free within a time range. Accepts `start`/`end` (preferred \u2014 matches the underlying availability service) or `start_time`/`end_time` (aliases that match the REST events schema).",
700
739
  schema: GetAvailabilitySchema,
701
740
  annotations: { title: "Get Availability", readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
702
741
  execute: createExecutor(getAvailability)
703
742
  },
704
743
  {
705
744
  name: "find_meeting_time",
706
- description: "Find time slots when multiple agents are all free simultaneously. All agents must be free during the returned slots.",
745
+ description: "Find time slots when multiple agents are all free simultaneously. Accepts `agents`/`start`/`end` (preferred \u2014 matches the availability service) or `agent_ids`/`start_time`/`end_time` (aliases that match the REST/scheduling-proposal naming).",
707
746
  schema: FindMeetingTimeSchema,
708
747
  annotations: { title: "Find Meeting Time", readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
709
748
  execute: createExecutor(findMeetingTime)
@@ -711,7 +750,7 @@ var TOOL_DEFINITIONS = [
711
750
  // ── Calendar context ───────────────────────────────────────────
712
751
  {
713
752
  name: "get_calendar_context",
714
- description: "Get a calendar's temporal context in a single call: the current event, the next upcoming event, recent past events, a short upcoming window, and the owning agent's status.",
753
+ description: `Get a calendar's temporal context in a single call: the current event (if one is happening now), the next upcoming event, recent past events, a short upcoming window, and the owning agent's status (idle/working/waiting/error). Use this to answer "what is this agent doing right now?" without issuing multiple list_events queries.`,
715
754
  schema: GetCalendarContextSchema,
716
755
  annotations: { title: "Get Calendar Context", readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
717
756
  execute: createExecutor(getCalendarContext)
@@ -719,14 +758,14 @@ var TOOL_DEFINITIONS = [
719
758
  // ── Scheduling proposals ───────────────────────────────────────
720
759
  {
721
760
  name: "create_proposal",
722
- description: "Create a scheduling proposal \u2014 send candidate time slots to one or more participant agents so they can accept, decline, or counter-propose. Requires an org-level API key. Pro plan only.",
761
+ description: "Create a scheduling proposal \u2014 send a set of candidate time slots to one or more participant agents so they can accept, decline, or counter-propose. The organizer agent owns the proposal; once every participant responds, the system auto-resolves to the highest-scoring slot (or cancels if all decline). Requires an org-level API key. Pro plan only.",
723
762
  schema: CreateProposalSchema,
724
763
  annotations: { title: "Create Proposal", readOnlyHint: false, destructiveHint: false, idempotentHint: false, openWorldHint: false },
725
764
  execute: createExecutor(createProposal)
726
765
  },
727
766
  {
728
767
  name: "list_proposals",
729
- description: "List scheduling proposals for the org. Filter by status or organizer_agent_id. Requires an org-level API key.",
768
+ description: "List scheduling proposals for the org. Filter by status (pending|confirmed|expired|cancelled) or organizer_agent_id. Requires an org-level API key.",
730
769
  schema: ListProposalsSchema,
731
770
  annotations: { title: "List Proposals", readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
732
771
  execute: createExecutor(listProposals)
@@ -740,14 +779,14 @@ var TOOL_DEFINITIONS = [
740
779
  },
741
780
  {
742
781
  name: "respond_to_proposal",
743
- description: "Submit a response (accept / decline / counter) on behalf of one participant agent to an open proposal. Requires an org-level API key. Pro plan only.",
782
+ description: 'Submit a response (accept / decline / counter) on behalf of one participant agent to an open proposal. An "accept" requires the slot id from the proposal; a "counter" can suggest alternative slots. When all participants have responded the proposal auto-resolves \u2014 no separate resolve call needed in the normal flow. Requires an org-level API key. Pro plan only.',
744
783
  schema: RespondToProposalSchema,
745
784
  annotations: { title: "Respond To Proposal", readOnlyHint: false, destructiveHint: false, idempotentHint: false, openWorldHint: false },
746
785
  execute: createExecutor(respondToProposal)
747
786
  },
748
787
  {
749
788
  name: "resolve_proposal",
750
- description: "Force-resolve an open proposal using responses collected so far. Picks the highest-scoring slot and creates a confirmed calendar event. Requires an org-level API key. Pro plan only.",
789
+ description: 'Force-resolve an open proposal using responses collected so far. Picks the highest-scoring slot among those accepted by the most participants and creates a confirmed calendar event. If every response was "decline", the proposal is cancelled instead. Use when you want to close out a proposal without waiting for every participant. Requires an org-level API key. Pro plan only.',
751
790
  schema: ResolveProposalSchema,
752
791
  annotations: { title: "Resolve Proposal", readOnlyHint: false, destructiveHint: false, idempotentHint: true, openWorldHint: false },
753
792
  execute: createExecutor(resolveProposal)
@@ -762,7 +801,7 @@ var TOOL_DEFINITIONS = [
762
801
  // ── Availability rules ─────────────────────────────────────────
763
802
  {
764
803
  name: "set_availability_rules",
765
- description: "Set or replace the availability rules on a calendar \u2014 buffer times before/after events and optional per-day working hours. Upsert: overwrites any existing rules.",
804
+ description: "Set or replace the availability rules on a calendar \u2014 buffer times before/after events and optional per-day working hours. When these rules are set, every availability query on this calendar automatically applies them (busy-block expansion for buffers, masking outside working hours). Upsert: overwrites any existing rules.",
766
805
  schema: SetAvailabilityRulesSchema,
767
806
  annotations: { title: "Set Availability Rules", readOnlyHint: false, destructiveHint: false, idempotentHint: true, openWorldHint: false },
768
807
  execute: createExecutor(setAvailabilityRules)
@@ -776,7 +815,7 @@ var TOOL_DEFINITIONS = [
776
815
  },
777
816
  {
778
817
  name: "clear_availability_rules",
779
- description: "Remove the availability rules from a calendar, reverting to the default (no buffers, no working-hours mask).",
818
+ description: "Remove the availability rules from a calendar, reverting to the default (no buffers, no working-hours mask). Returns the deleted row, or an error if none were set.",
780
819
  schema: ClearAvailabilityRulesSchema,
781
820
  annotations: { title: "Clear Availability Rules", readOnlyHint: false, destructiveHint: true, idempotentHint: true, openWorldHint: false },
782
821
  execute: createExecutor(clearAvailabilityRules)
@@ -784,35 +823,35 @@ var TOOL_DEFINITIONS = [
784
823
  // ── Webhooks ───────────────────────────────────────────────────
785
824
  {
786
825
  name: "list_webhooks",
787
- description: "List all webhook subscriptions for the organization.",
826
+ description: "List the org's webhook subscriptions with their subscribed event types and active state. Signing secrets are never returned. Requires an org-level API key.",
788
827
  schema: ListWebhooksSchema,
789
828
  annotations: { title: "List Webhooks", readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
790
829
  execute: createExecutor(listWebhooks)
791
830
  },
792
831
  {
793
832
  name: "get_webhook",
794
- description: "Get a webhook subscription by its ID.",
833
+ description: "Get a single webhook subscription by id, including its subscribed event types and active state. The signing secret is never returned. Requires an org-level API key.",
795
834
  schema: GetWebhookSchema,
796
835
  annotations: { title: "Get Webhook", readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
797
836
  execute: createExecutor(getWebhook)
798
837
  },
799
838
  {
800
839
  name: "create_webhook",
801
- description: "Create a webhook subscription to receive event notifications at a URL. Payloads are signed with HMAC-SHA256.",
840
+ description: "Create a webhook subscription so the org receives HTTP POST notifications when events occur (e.g. event.created, proposal.confirmed). The signing secret is returned ONCE in this response \u2014 store it to verify the HMAC-SHA256 signature on delivered payloads. Requires an org-level API key.",
802
841
  schema: CreateWebhookSchema,
803
842
  annotations: { title: "Create Webhook", readOnlyHint: false, destructiveHint: false, idempotentHint: false, openWorldHint: false },
804
843
  execute: createExecutor(createWebhook)
805
844
  },
806
845
  {
807
846
  name: "update_webhook",
808
- description: "Update a webhook's URL, subscribed events, or active status.",
847
+ description: "Update a webhook subscription \u2014 change its delivery URL, the set of subscribed event types, or pause/resume it via active. At least one field must be supplied. Requires an org-level API key.",
809
848
  schema: UpdateWebhookSchema,
810
849
  annotations: { title: "Update Webhook", readOnlyHint: false, destructiveHint: false, idempotentHint: true, openWorldHint: false },
811
850
  execute: createExecutor(updateWebhook)
812
851
  },
813
852
  {
814
853
  name: "delete_webhook",
815
- description: "Delete a webhook subscription. No further events will be delivered to this URL.",
854
+ description: "Permanently delete a webhook subscription. This frees its endpoint slot against the per-plan cap. Requires an org-level API key.",
816
855
  schema: DeleteWebhookSchema,
817
856
  annotations: { title: "Delete Webhook", readOnlyHint: false, destructiveHint: true, idempotentHint: true, openWorldHint: false },
818
857
  execute: createExecutor(deleteWebhook)
@@ -827,42 +866,42 @@ var TOOL_DEFINITIONS = [
827
866
  // ── iCal Subscriptions ─────────────────────────────────────────
828
867
  {
829
868
  name: "list_ical_subscriptions",
830
- description: "List external calendar imports (iCal subscriptions) for an agent.",
869
+ description: "List an agent's external iCal feed subscriptions (e.g. linked Google Calendar / Outlook feeds), including their sync status and last sync time.",
831
870
  schema: ListICalSubscriptionsSchema,
832
871
  annotations: { title: "List iCal Subscriptions", readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
833
872
  execute: createExecutor(listICalSubscriptions)
834
873
  },
835
874
  {
836
875
  name: "get_ical_subscription",
837
- description: "Get an iCal subscription by its ID, including sync status and last error.",
876
+ description: "Get a single external iCal feed subscription by id, including its sync status, last sync time, and last error.",
838
877
  schema: GetICalSubscriptionSchema,
839
878
  annotations: { title: "Get iCal Subscription", readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
840
879
  execute: createExecutor(getICalSubscription)
841
880
  },
842
881
  {
843
882
  name: "subscribe_ical",
844
- description: "Link an external iCal feed (e.g. a human's Google Calendar) to an agent's calendar so external events appear in availability calculations. Events are synced every 30 minutes.",
883
+ description: "Link an external iCal feed (e.g. a human's Google Calendar) to an agent's calendar so external events appear in availability calculations. The target calendar must be owned by the specified agent \u2014 create the calendar with that agent_id first (org-level calendars without an agent_id cannot host external iCal subscriptions; create a dedicated per-agent calendar for sync targets).",
845
884
  schema: SubscribeICalSchema,
846
885
  annotations: { title: "Subscribe iCal", readOnlyHint: false, destructiveHint: false, idempotentHint: false, openWorldHint: true },
847
886
  execute: createExecutor(subscribeICal)
848
887
  },
849
888
  {
850
889
  name: "update_ical_subscription",
851
- description: "Update an iCal subscription's label or feed URL.",
890
+ description: "Update an external iCal feed subscription \u2014 change its label or its feed URL. Changing the URL forces a full re-sync on the next poll.",
852
891
  schema: UpdateICalSubscriptionSchema,
853
892
  annotations: { title: "Update iCal Subscription", readOnlyHint: false, destructiveHint: false, idempotentHint: true, openWorldHint: false },
854
893
  execute: createExecutor(updateICalSubscription)
855
894
  },
856
895
  {
857
896
  name: "delete_ical_subscription",
858
- description: "Remove an external calendar import. Previously synced events remain on the calendar.",
897
+ description: "Delete an external iCal feed subscription. Events previously synced from the feed are no longer refreshed.",
859
898
  schema: DeleteICalSubscriptionSchema,
860
899
  annotations: { title: "Delete iCal Subscription", readOnlyHint: false, destructiveHint: true, idempotentHint: true, openWorldHint: false },
861
900
  execute: createExecutor(deleteICalSubscription)
862
901
  },
863
902
  {
864
903
  name: "sync_ical_subscription",
865
- description: "Trigger an immediate sync of an iCal subscription instead of waiting for the next 30-minute poll.",
904
+ description: "Trigger an immediate sync of an external iCal feed subscription instead of waiting for the next scheduled poll. Returns once the sync has been queued.",
866
905
  schema: SyncICalSubscriptionSchema,
867
906
  annotations: { title: "Sync iCal Subscription", readOnlyHint: false, destructiveHint: false, idempotentHint: true, openWorldHint: true },
868
907
  execute: createExecutor(syncICalSubscription)
@@ -870,14 +909,14 @@ var TOOL_DEFINITIONS = [
870
909
  // ── Scoped keys ────────────────────────────────────────────────
871
910
  {
872
911
  name: "create_scoped_key",
873
- description: "Create an agent-scoped API key (chr_ak_*) that can only act on behalf of a single agent. The plaintext key is returned exactly once. Requires an org-level API key.",
912
+ description: "Create an agent-scoped API key (chr_ak_*) that can only act on behalf of a single agent. Use this to self-provision or rotate per-agent credentials. The plaintext key is returned exactly once in the response \u2014 store it immediately, it cannot be retrieved later. Requires an org-level API key.",
874
913
  schema: CreateScopedKeySchema,
875
914
  annotations: { title: "Create Scoped Key", readOnlyHint: false, destructiveHint: false, idempotentHint: false, openWorldHint: false },
876
915
  execute: createExecutor(createScopedKey)
877
916
  },
878
917
  {
879
918
  name: "list_scoped_keys",
880
- description: "List all live (non-revoked) agent-scoped API keys for this org. Returns key metadata only \u2014 never the plaintext secret. Requires an org-level API key.",
919
+ description: "List all live (non-revoked) agent-scoped API keys for this org. Returns key metadata only (id, prefix, agent_id, label, created_at) \u2014 never the plaintext secret. Requires an org-level API key.",
881
920
  schema: ListScopedKeysSchema,
882
921
  annotations: { title: "List Scoped Keys", readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
883
922
  execute: createExecutor(listScopedKeys)
@@ -892,7 +931,7 @@ var TOOL_DEFINITIONS = [
892
931
  // ── Audit log ──────────────────────────────────────────────────
893
932
  {
894
933
  name: "get_audit_log",
895
- description: "List audit-log entries for the calling org \u2014 mutating operations and auth-lifecycle events, newest first. Results are clamped to the plan's retention window. Requires an org-level API key.",
934
+ description: "List audit-log entries for the calling org \u2014 mutating operations and auth-lifecycle events, newest first. Results are clamped to the plan's retention window. Requires an org-level API key (chr_sk_*); agent-scoped keys cannot read the org-wide audit log.",
896
935
  schema: GetAuditLogSchema,
897
936
  annotations: { title: "Get Audit Log", readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
898
937
  execute: createExecutor(getAuditLog)
@@ -900,7 +939,7 @@ var TOOL_DEFINITIONS = [
900
939
  // ── Terms ──────────────────────────────────────────────────────
901
940
  {
902
941
  name: "accept_terms",
903
- description: "Re-accept the current Chronary terms of service on behalf of the calling org. Use this when responses carry the Chronary-Terms-Upgrade-Required header. Requires an org-level API key.",
942
+ description: "Re-accept the current Chronary terms of service on behalf of the calling org. Use this when responses carry the Chronary-Terms-Upgrade-Required header \u2014 a material ToS bump otherwise leaves MCP-only agents stuck without a console session. Pass the current tos_version (read it from GET /v1/auth/terms/current). Requires an org-level API key (chr_sk_*); agent-scoped keys cannot accept org-wide terms.",
904
943
  schema: AcceptTermsSchema,
905
944
  annotations: { title: "Accept Terms", readOnlyHint: false, destructiveHint: false, idempotentHint: true, openWorldHint: false },
906
945
  execute: createExecutor(acceptTerms)
@@ -908,7 +947,7 @@ var TOOL_DEFINITIONS = [
908
947
  // ── Usage ──────────────────────────────────────────────────────
909
948
  {
910
949
  name: "get_usage",
911
- description: "Get quota and usage statistics for the current billing period.",
950
+ description: "Get the calling org's current-period usage and plan limits (agents, calendars, events, API calls, webhooks, availability queries, iCal subscriptions, proposals, scoped keys, holds, cross-calendar queries). Requires an org-level API key (chr_sk_*); agent-scoped keys cannot read org-wide usage.",
912
951
  schema: GetUsageSchema,
913
952
  annotations: { title: "Get Usage", readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
914
953
  execute: createExecutor(getUsage)