@softeria/ms-365-mcp-server 0.40.1 → 0.41.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 +6 -0
- package/dist/generated/client.js +16 -0
- package/logs/mcp-server.log +10 -10
- package/package.json +1 -1
- package/src/endpoints.json +6 -0
package/dist/endpoints.json
CHANGED
|
@@ -580,6 +580,12 @@
|
|
|
580
580
|
"toolName": "send-channel-message",
|
|
581
581
|
"workScopes": ["ChannelMessage.Send"]
|
|
582
582
|
},
|
|
583
|
+
{
|
|
584
|
+
"pathPattern": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies",
|
|
585
|
+
"method": "post",
|
|
586
|
+
"toolName": "reply-to-channel-message",
|
|
587
|
+
"workScopes": ["ChannelMessage.Send"]
|
|
588
|
+
},
|
|
583
589
|
{
|
|
584
590
|
"pathPattern": "/teams/{team-id}/members",
|
|
585
591
|
"method": "get",
|
package/dist/generated/client.js
CHANGED
|
@@ -7239,6 +7239,22 @@ To monitor future changes, call the delta API by using the @odata.deltaLink in t
|
|
|
7239
7239
|
],
|
|
7240
7240
|
response: z.void()
|
|
7241
7241
|
},
|
|
7242
|
+
{
|
|
7243
|
+
method: "post",
|
|
7244
|
+
path: "/teams/:teamId/channels/:channelId/messages/:chatMessageId/replies",
|
|
7245
|
+
alias: "reply-to-channel-message",
|
|
7246
|
+
description: `Create a new reply to a chatMessage in a specified channel.`,
|
|
7247
|
+
requestFormat: "json",
|
|
7248
|
+
parameters: [
|
|
7249
|
+
{
|
|
7250
|
+
name: "body",
|
|
7251
|
+
description: `New navigation property`,
|
|
7252
|
+
type: "Body",
|
|
7253
|
+
schema: microsoft_graph_chatMessage
|
|
7254
|
+
}
|
|
7255
|
+
],
|
|
7256
|
+
response: z.void()
|
|
7257
|
+
},
|
|
7242
7258
|
{
|
|
7243
7259
|
method: "get",
|
|
7244
7260
|
path: "/teams/:teamId/members",
|
package/logs/mcp-server.log
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
2026-02-
|
|
2
|
-
2026-02-
|
|
3
|
-
2026-02-
|
|
4
|
-
2026-02-
|
|
5
|
-
2026-02-
|
|
6
|
-
2026-02-
|
|
7
|
-
2026-02-
|
|
8
|
-
2026-02-
|
|
9
|
-
2026-02-
|
|
10
|
-
2026-02-
|
|
1
|
+
2026-02-15 08:15:07 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
|
|
2
|
+
2026-02-15 08:15:07 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
|
|
3
|
+
2026-02-15 08:15:07 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
|
|
4
|
+
2026-02-15 08:15:07 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/messages
|
|
5
|
+
2026-02-15 08:15:07 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/calendar
|
|
6
|
+
2026-02-15 08:15:08 INFO: Using environment variables for secrets
|
|
7
|
+
2026-02-15 08:15:08 INFO: Using environment variables for secrets
|
|
8
|
+
2026-02-15 08:15:08 INFO: Using environment variables for secrets
|
|
9
|
+
2026-02-15 08:15:08 INFO: Using environment variables for secrets
|
|
10
|
+
2026-02-15 08:15:08 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.41.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
|
@@ -580,6 +580,12 @@
|
|
|
580
580
|
"toolName": "send-channel-message",
|
|
581
581
|
"workScopes": ["ChannelMessage.Send"]
|
|
582
582
|
},
|
|
583
|
+
{
|
|
584
|
+
"pathPattern": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies",
|
|
585
|
+
"method": "post",
|
|
586
|
+
"toolName": "reply-to-channel-message",
|
|
587
|
+
"workScopes": ["ChannelMessage.Send"]
|
|
588
|
+
},
|
|
583
589
|
{
|
|
584
590
|
"pathPattern": "/teams/{team-id}/members",
|
|
585
591
|
"method": "get",
|