This commit is contained in:
2026-07-10 16:56:16 +03:00
parent 979e974521
commit afa2bf5126
6 changed files with 18 additions and 9 deletions
+4 -2
View File
@@ -14,7 +14,8 @@ export function registerCalendarTools(server: McpServer): void {
startDate: z.string().describe("Start date in YYYY-MM-DD format"),
endDate: z.string().describe("End date in YYYY-MM-DD format"),
includeBody: z.boolean().default(false).describe(
"If true, fetch full event details (organizer, attendees, body) via GetItem",
"If true, fetch full event details (organizer, attendees, body)"
+ " via GetItem",
),
}),
outputSchema: z.object({
@@ -107,7 +108,8 @@ export function registerCalendarTools(server: McpServer): void {
{
description:
"Download all file attachments from a calendar event to disk."
+ " Inline (embedded) attachments are skipped — only standalone file attachments are downloaded.",
+ " Inline (embedded) attachments are skipped —"
+ " only standalone file attachments are downloaded.",
inputSchema: z.object({
itemId: z.string().describe(
"The Exchange ItemId of the calendar event",