@softeria/ms-365-mcp-server 0.66.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.
- package/dist/endpoints.json +24 -0
- package/dist/generated/client.js +64 -0
- package/logs/mcp-server.log +10 -10
- package/package.json +1 -1
- package/src/endpoints.json +24 -0
package/dist/endpoints.json
CHANGED
|
@@ -922,6 +922,18 @@
|
|
|
922
922
|
"toolName": "list-channel-message-replies",
|
|
923
923
|
"workScopes": ["ChannelMessage.Read.All"]
|
|
924
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
|
+
},
|
|
925
937
|
{
|
|
926
938
|
"pathPattern": "/teams/{team-id}/members",
|
|
927
939
|
"method": "get",
|
|
@@ -941,6 +953,18 @@
|
|
|
941
953
|
"workScopes": ["ChatMessage.Send"],
|
|
942
954
|
"llmTip": "Use contentType 'html' in the body — plain text contentType gets mangled by Graph API."
|
|
943
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
|
+
},
|
|
944
968
|
{
|
|
945
969
|
"pathPattern": "/sites",
|
|
946
970
|
"method": "get",
|
package/dist/generated/client.js
CHANGED
|
@@ -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",
|
package/logs/mcp-server.log
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
2026-04-05 10:
|
|
2
|
-
2026-04-05 10:
|
|
3
|
-
2026-04-05 10:
|
|
4
|
-
2026-04-05 10:
|
|
5
|
-
2026-04-05 10:
|
|
6
|
-
2026-04-05 10:
|
|
7
|
-
2026-04-05 10:
|
|
8
|
-
2026-04-05 10:
|
|
9
|
-
2026-04-05 10:
|
|
10
|
-
2026-04-05 10:
|
|
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.
|
|
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",
|
package/src/endpoints.json
CHANGED
|
@@ -922,6 +922,18 @@
|
|
|
922
922
|
"toolName": "list-channel-message-replies",
|
|
923
923
|
"workScopes": ["ChannelMessage.Read.All"]
|
|
924
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
|
+
},
|
|
925
937
|
{
|
|
926
938
|
"pathPattern": "/teams/{team-id}/members",
|
|
927
939
|
"method": "get",
|
|
@@ -941,6 +953,18 @@
|
|
|
941
953
|
"workScopes": ["ChatMessage.Send"],
|
|
942
954
|
"llmTip": "Use contentType 'html' in the body — plain text contentType gets mangled by Graph API."
|
|
943
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
|
+
},
|
|
944
968
|
{
|
|
945
969
|
"pathPattern": "/sites",
|
|
946
970
|
"method": "get",
|