@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.
@@ -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",
@@ -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",
@@ -1,10 +1,10 @@
1
- 2026-02-14 22:51:41 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
2
- 2026-02-14 22:51:41 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
3
- 2026-02-14 22:51:41 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
4
- 2026-02-14 22:51:41 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/messages
5
- 2026-02-14 22:51:41 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/calendar
6
- 2026-02-14 22:51:42 INFO: Using environment variables for secrets
7
- 2026-02-14 22:51:42 INFO: Using environment variables for secrets
8
- 2026-02-14 22:51:42 INFO: Using environment variables for secrets
9
- 2026-02-14 22:51:42 INFO: Using environment variables for secrets
10
- 2026-02-14 22:51:42 INFO: Using environment variables for secrets
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.40.1",
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",
@@ -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",