@softeria/ms-365-mcp-server 0.65.0 → 0.66.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.
@@ -354,6 +354,19 @@
354
354
  "toolName": "get-schedule",
355
355
  "workScopes": ["Calendars.Read"]
356
356
  },
357
+ {
358
+ "pathPattern": "/users/{user-id}/calendar/events",
359
+ "method": "get",
360
+ "toolName": "list-shared-calendar-events",
361
+ "workScopes": ["Calendars.Read.Shared"]
362
+ },
363
+ {
364
+ "pathPattern": "/users/{user-id}/calendarView",
365
+ "method": "get",
366
+ "toolName": "get-shared-calendar-view",
367
+ "workScopes": ["Calendars.Read.Shared"],
368
+ "supportsTimezone": true
369
+ },
357
370
  {
358
371
  "pathPattern": "/me/calendars/{calendar-id}/events/{event-id}/instances",
359
372
  "method": "get",
@@ -9422,6 +9422,120 @@ To monitor future changes, call the delta API by using the @odata.deltaLink in t
9422
9422
  ],
9423
9423
  response: z.void()
9424
9424
  },
9425
+ {
9426
+ method: "get",
9427
+ path: "/users/:userId/calendar/events",
9428
+ alias: "list-shared-calendar-events",
9429
+ description: `The events in the calendar. Navigation property. Read-only.`,
9430
+ requestFormat: "json",
9431
+ parameters: [
9432
+ {
9433
+ name: "$top",
9434
+ type: "Query",
9435
+ schema: z.number().int().gte(0).describe("Show only the first n items").optional()
9436
+ },
9437
+ {
9438
+ name: "$skip",
9439
+ type: "Query",
9440
+ schema: z.number().int().gte(0).describe("Skip the first n items").optional()
9441
+ },
9442
+ {
9443
+ name: "$search",
9444
+ type: "Query",
9445
+ schema: z.string().describe("Search items by search phrases").optional()
9446
+ },
9447
+ {
9448
+ name: "$filter",
9449
+ type: "Query",
9450
+ schema: z.string().describe("Filter items by property values").optional()
9451
+ },
9452
+ {
9453
+ name: "$count",
9454
+ type: "Query",
9455
+ schema: z.boolean().describe("Include count of items").optional()
9456
+ },
9457
+ {
9458
+ name: "$orderby",
9459
+ type: "Query",
9460
+ schema: z.array(z.string()).describe("Order items by property values").optional()
9461
+ },
9462
+ {
9463
+ name: "$select",
9464
+ type: "Query",
9465
+ schema: z.array(z.string()).describe("Select properties to be returned").optional()
9466
+ },
9467
+ {
9468
+ name: "$expand",
9469
+ type: "Query",
9470
+ schema: z.array(z.string()).describe("Expand related entities").optional()
9471
+ }
9472
+ ],
9473
+ response: z.void()
9474
+ },
9475
+ {
9476
+ method: "get",
9477
+ path: "/users/:userId/calendarView",
9478
+ alias: "get-shared-calendar-view",
9479
+ description: `The calendar view for the calendar. Read-only. Nullable.`,
9480
+ requestFormat: "json",
9481
+ parameters: [
9482
+ {
9483
+ name: "startDateTime",
9484
+ type: "Query",
9485
+ schema: z.string().describe(
9486
+ "The start date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T19:00:00-08:00"
9487
+ )
9488
+ },
9489
+ {
9490
+ name: "endDateTime",
9491
+ type: "Query",
9492
+ schema: z.string().describe(
9493
+ "The end date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00"
9494
+ )
9495
+ },
9496
+ {
9497
+ name: "$top",
9498
+ type: "Query",
9499
+ schema: z.number().int().gte(0).describe("Show only the first n items").optional()
9500
+ },
9501
+ {
9502
+ name: "$skip",
9503
+ type: "Query",
9504
+ schema: z.number().int().gte(0).describe("Skip the first n items").optional()
9505
+ },
9506
+ {
9507
+ name: "$search",
9508
+ type: "Query",
9509
+ schema: z.string().describe("Search items by search phrases").optional()
9510
+ },
9511
+ {
9512
+ name: "$filter",
9513
+ type: "Query",
9514
+ schema: z.string().describe("Filter items by property values").optional()
9515
+ },
9516
+ {
9517
+ name: "$count",
9518
+ type: "Query",
9519
+ schema: z.boolean().describe("Include count of items").optional()
9520
+ },
9521
+ {
9522
+ name: "$orderby",
9523
+ type: "Query",
9524
+ schema: z.array(z.string()).describe("Order items by property values").optional()
9525
+ },
9526
+ {
9527
+ name: "$select",
9528
+ type: "Query",
9529
+ schema: z.array(z.string()).describe("Select properties to be returned").optional()
9530
+ },
9531
+ {
9532
+ name: "$expand",
9533
+ type: "Query",
9534
+ schema: z.array(z.string()).describe("Expand related entities").optional()
9535
+ }
9536
+ ],
9537
+ response: z.void()
9538
+ },
9425
9539
  {
9426
9540
  method: "get",
9427
9541
  path: "/users/:userId/directReports",
@@ -1,10 +1,10 @@
1
- 2026-04-05 10:00:41 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
2
- 2026-04-05 10:00:41 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
3
- 2026-04-05 10:00:41 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
4
- 2026-04-05 10:00:41 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/messages
5
- 2026-04-05 10:00:41 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/calendar
6
- 2026-04-05 10:00:43 INFO: Using environment variables for secrets
7
- 2026-04-05 10:00:43 INFO: Using environment variables for secrets
8
- 2026-04-05 10:00:43 INFO: Using environment variables for secrets
9
- 2026-04-05 10:00:43 INFO: Using environment variables for secrets
10
- 2026-04-05 10:00:43 INFO: Using environment variables for secrets
1
+ 2026-04-05 10:06:38 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
2
+ 2026-04-05 10:06:38 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
3
+ 2026-04-05 10:06:38 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
4
+ 2026-04-05 10:06:38 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/messages
5
+ 2026-04-05 10:06:38 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/calendar
6
+ 2026-04-05 10:06:40 INFO: Using environment variables for secrets
7
+ 2026-04-05 10:06:40 INFO: Using environment variables for secrets
8
+ 2026-04-05 10:06:40 INFO: Using environment variables for secrets
9
+ 2026-04-05 10:06:40 INFO: Using environment variables for secrets
10
+ 2026-04-05 10:06:40 INFO: Using environment variables for secrets
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softeria/ms-365-mcp-server",
3
- "version": "0.65.0",
3
+ "version": "0.66.0",
4
4
  "description": " A Model Context Protocol (MCP) server for interacting with Microsoft 365 and Office services through the Graph API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -354,6 +354,19 @@
354
354
  "toolName": "get-schedule",
355
355
  "workScopes": ["Calendars.Read"]
356
356
  },
357
+ {
358
+ "pathPattern": "/users/{user-id}/calendar/events",
359
+ "method": "get",
360
+ "toolName": "list-shared-calendar-events",
361
+ "workScopes": ["Calendars.Read.Shared"]
362
+ },
363
+ {
364
+ "pathPattern": "/users/{user-id}/calendarView",
365
+ "method": "get",
366
+ "toolName": "get-shared-calendar-view",
367
+ "workScopes": ["Calendars.Read.Shared"],
368
+ "supportsTimezone": true
369
+ },
357
370
  {
358
371
  "pathPattern": "/me/calendars/{calendar-id}/events/{event-id}/instances",
359
372
  "method": "get",