@softeria/ms-365-mcp-server 0.65.0 → 0.67.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",
@@ -909,6 +922,18 @@
909
922
  "toolName": "list-channel-message-replies",
910
923
  "workScopes": ["ChannelMessage.Read.All"]
911
924
  },
925
+ {
926
+ "pathPattern": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/setReaction",
927
+ "method": "post",
928
+ "toolName": "set-channel-message-reaction",
929
+ "workScopes": ["ChannelMessage.Send"]
930
+ },
931
+ {
932
+ "pathPattern": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/unsetReaction",
933
+ "method": "post",
934
+ "toolName": "unset-channel-message-reaction",
935
+ "workScopes": ["ChannelMessage.Send"]
936
+ },
912
937
  {
913
938
  "pathPattern": "/teams/{team-id}/members",
914
939
  "method": "get",
@@ -928,6 +953,18 @@
928
953
  "workScopes": ["ChatMessage.Send"],
929
954
  "llmTip": "Use contentType 'html' in the body — plain text contentType gets mangled by Graph API."
930
955
  },
956
+ {
957
+ "pathPattern": "/chats/{chat-id}/messages/{chatMessage-id}/setReaction",
958
+ "method": "post",
959
+ "toolName": "set-chat-message-reaction",
960
+ "workScopes": ["ChatMessage.Send"]
961
+ },
962
+ {
963
+ "pathPattern": "/chats/{chat-id}/messages/{chatMessage-id}/unsetReaction",
964
+ "method": "post",
965
+ "toolName": "unset-chat-message-reaction",
966
+ "workScopes": ["ChatMessage.Send"]
967
+ },
931
968
  {
932
969
  "pathPattern": "/sites",
933
970
  "method": "get",
@@ -4443,6 +4443,38 @@ const endpoints = makeApi([
4443
4443
  ],
4444
4444
  response: z.void()
4445
4445
  },
4446
+ {
4447
+ method: "post",
4448
+ path: "/chats/:chatId/messages/:chatMessageId/setReaction",
4449
+ alias: "set-chat-message-reaction",
4450
+ description: `Invoke action setReaction`,
4451
+ requestFormat: "json",
4452
+ parameters: [
4453
+ {
4454
+ name: "body",
4455
+ description: `Action parameters`,
4456
+ type: "Body",
4457
+ schema: z.object({ reactionType: z.string().nullable() }).partial().passthrough()
4458
+ }
4459
+ ],
4460
+ response: z.void()
4461
+ },
4462
+ {
4463
+ method: "post",
4464
+ path: "/chats/:chatId/messages/:chatMessageId/unsetReaction",
4465
+ alias: "unset-chat-message-reaction",
4466
+ description: `Invoke action unsetReaction`,
4467
+ requestFormat: "json",
4468
+ parameters: [
4469
+ {
4470
+ name: "body",
4471
+ description: `Action parameters`,
4472
+ type: "Body",
4473
+ schema: z.object({ reactionType: z.string().nullable() }).partial().passthrough()
4474
+ }
4475
+ ],
4476
+ response: z.void()
4477
+ },
4446
4478
  {
4447
4479
  method: "post",
4448
4480
  path: "/communications/presences",
@@ -9320,6 +9352,38 @@ To monitor future changes, call the delta API by using the @odata.deltaLink in t
9320
9352
  ],
9321
9353
  response: z.void()
9322
9354
  },
9355
+ {
9356
+ method: "post",
9357
+ path: "/teams/:teamId/channels/:channelId/messages/:chatMessageId/setReaction",
9358
+ alias: "set-channel-message-reaction",
9359
+ description: `Invoke action setReaction`,
9360
+ requestFormat: "json",
9361
+ parameters: [
9362
+ {
9363
+ name: "body",
9364
+ description: `Action parameters`,
9365
+ type: "Body",
9366
+ schema: z.object({ reactionType: z.string().nullable() }).partial().passthrough()
9367
+ }
9368
+ ],
9369
+ response: z.void()
9370
+ },
9371
+ {
9372
+ method: "post",
9373
+ path: "/teams/:teamId/channels/:channelId/messages/:chatMessageId/unsetReaction",
9374
+ alias: "unset-channel-message-reaction",
9375
+ description: `Invoke action unsetReaction`,
9376
+ requestFormat: "json",
9377
+ parameters: [
9378
+ {
9379
+ name: "body",
9380
+ description: `Action parameters`,
9381
+ type: "Body",
9382
+ schema: z.object({ reactionType: z.string().nullable() }).partial().passthrough()
9383
+ }
9384
+ ],
9385
+ response: z.void()
9386
+ },
9323
9387
  {
9324
9388
  method: "get",
9325
9389
  path: "/teams/:teamId/members",
@@ -9422,6 +9486,120 @@ To monitor future changes, call the delta API by using the @odata.deltaLink in t
9422
9486
  ],
9423
9487
  response: z.void()
9424
9488
  },
9489
+ {
9490
+ method: "get",
9491
+ path: "/users/:userId/calendar/events",
9492
+ alias: "list-shared-calendar-events",
9493
+ description: `The events in the calendar. Navigation property. Read-only.`,
9494
+ requestFormat: "json",
9495
+ parameters: [
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
+ },
9539
+ {
9540
+ method: "get",
9541
+ path: "/users/:userId/calendarView",
9542
+ alias: "get-shared-calendar-view",
9543
+ description: `The calendar view for the calendar. Read-only. Nullable.`,
9544
+ requestFormat: "json",
9545
+ parameters: [
9546
+ {
9547
+ name: "startDateTime",
9548
+ type: "Query",
9549
+ schema: z.string().describe(
9550
+ "The start date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T19:00:00-08:00"
9551
+ )
9552
+ },
9553
+ {
9554
+ name: "endDateTime",
9555
+ type: "Query",
9556
+ schema: z.string().describe(
9557
+ "The end date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00"
9558
+ )
9559
+ },
9560
+ {
9561
+ name: "$top",
9562
+ type: "Query",
9563
+ schema: z.number().int().gte(0).describe("Show only the first n items").optional()
9564
+ },
9565
+ {
9566
+ name: "$skip",
9567
+ type: "Query",
9568
+ schema: z.number().int().gte(0).describe("Skip the first n items").optional()
9569
+ },
9570
+ {
9571
+ name: "$search",
9572
+ type: "Query",
9573
+ schema: z.string().describe("Search items by search phrases").optional()
9574
+ },
9575
+ {
9576
+ name: "$filter",
9577
+ type: "Query",
9578
+ schema: z.string().describe("Filter items by property values").optional()
9579
+ },
9580
+ {
9581
+ name: "$count",
9582
+ type: "Query",
9583
+ schema: z.boolean().describe("Include count of items").optional()
9584
+ },
9585
+ {
9586
+ name: "$orderby",
9587
+ type: "Query",
9588
+ schema: z.array(z.string()).describe("Order items by property values").optional()
9589
+ },
9590
+ {
9591
+ name: "$select",
9592
+ type: "Query",
9593
+ schema: z.array(z.string()).describe("Select properties to be returned").optional()
9594
+ },
9595
+ {
9596
+ name: "$expand",
9597
+ type: "Query",
9598
+ schema: z.array(z.string()).describe("Expand related entities").optional()
9599
+ }
9600
+ ],
9601
+ response: z.void()
9602
+ },
9425
9603
  {
9426
9604
  method: "get",
9427
9605
  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:12:47 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
2
+ 2026-04-05 10:12:47 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
3
+ 2026-04-05 10:12:47 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
4
+ 2026-04-05 10:12:47 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/messages
5
+ 2026-04-05 10:12:47 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/calendar
6
+ 2026-04-05 10:12:49 INFO: Using environment variables for secrets
7
+ 2026-04-05 10:12:49 INFO: Using environment variables for secrets
8
+ 2026-04-05 10:12:49 INFO: Using environment variables for secrets
9
+ 2026-04-05 10:12:49 INFO: Using environment variables for secrets
10
+ 2026-04-05 10:12:49 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.67.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",
@@ -909,6 +922,18 @@
909
922
  "toolName": "list-channel-message-replies",
910
923
  "workScopes": ["ChannelMessage.Read.All"]
911
924
  },
925
+ {
926
+ "pathPattern": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/setReaction",
927
+ "method": "post",
928
+ "toolName": "set-channel-message-reaction",
929
+ "workScopes": ["ChannelMessage.Send"]
930
+ },
931
+ {
932
+ "pathPattern": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/unsetReaction",
933
+ "method": "post",
934
+ "toolName": "unset-channel-message-reaction",
935
+ "workScopes": ["ChannelMessage.Send"]
936
+ },
912
937
  {
913
938
  "pathPattern": "/teams/{team-id}/members",
914
939
  "method": "get",
@@ -928,6 +953,18 @@
928
953
  "workScopes": ["ChatMessage.Send"],
929
954
  "llmTip": "Use contentType 'html' in the body — plain text contentType gets mangled by Graph API."
930
955
  },
956
+ {
957
+ "pathPattern": "/chats/{chat-id}/messages/{chatMessage-id}/setReaction",
958
+ "method": "post",
959
+ "toolName": "set-chat-message-reaction",
960
+ "workScopes": ["ChatMessage.Send"]
961
+ },
962
+ {
963
+ "pathPattern": "/chats/{chat-id}/messages/{chatMessage-id}/unsetReaction",
964
+ "method": "post",
965
+ "toolName": "unset-chat-message-reaction",
966
+ "workScopes": ["ChatMessage.Send"]
967
+ },
931
968
  {
932
969
  "pathPattern": "/sites",
933
970
  "method": "get",