@softeria/ms-365-mcp-server 0.33.0 → 0.34.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.
@@ -12,6 +12,12 @@
12
12
  "toolName": "list-mail-folders",
13
13
  "scopes": ["Mail.Read"]
14
14
  },
15
+ {
16
+ "pathPattern": "/me/mailFolders/{mailFolder-id}/childFolders",
17
+ "method": "get",
18
+ "toolName": "list-mail-child-folders",
19
+ "scopes": ["Mail.Read"]
20
+ },
15
21
  {
16
22
  "pathPattern": "/me/mailFolders/{mailFolder-id}/messages",
17
23
  "method": "get",
@@ -4991,6 +4991,62 @@ Based on this value, you can better adjust the parameters and call findMeetingTi
4991
4991
  ],
4992
4992
  response: z.void()
4993
4993
  },
4994
+ {
4995
+ method: "get",
4996
+ path: "/me/mailFolders/:mailFolderId/childFolders",
4997
+ alias: "list-mail-child-folders",
4998
+ description: `Get the folder collection under the specified folder. You can use the .../me/mailFolders shortcut to get the top-level
4999
+ folder collection and navigate to another folder. By default, this operation does not return hidden folders. Use a query parameter includeHiddenFolders to include them in the response.`,
5000
+ requestFormat: "json",
5001
+ parameters: [
5002
+ {
5003
+ name: "includeHiddenFolders",
5004
+ type: "Query",
5005
+ schema: z.string().describe("Include Hidden Folders").optional()
5006
+ },
5007
+ {
5008
+ name: "$top",
5009
+ type: "Query",
5010
+ schema: z.number().int().gte(0).describe("Show only the first n items").optional()
5011
+ },
5012
+ {
5013
+ name: "$skip",
5014
+ type: "Query",
5015
+ schema: z.number().int().gte(0).describe("Skip the first n items").optional()
5016
+ },
5017
+ {
5018
+ name: "$search",
5019
+ type: "Query",
5020
+ schema: z.string().describe("Search items by search phrases").optional()
5021
+ },
5022
+ {
5023
+ name: "$filter",
5024
+ type: "Query",
5025
+ schema: z.string().describe("Filter items by property values").optional()
5026
+ },
5027
+ {
5028
+ name: "$count",
5029
+ type: "Query",
5030
+ schema: z.boolean().describe("Include count of items").optional()
5031
+ },
5032
+ {
5033
+ name: "$orderby",
5034
+ type: "Query",
5035
+ schema: z.array(z.string()).describe("Order items by property values").optional()
5036
+ },
5037
+ {
5038
+ name: "$select",
5039
+ type: "Query",
5040
+ schema: z.array(z.string()).describe("Select properties to be returned").optional()
5041
+ },
5042
+ {
5043
+ name: "$expand",
5044
+ type: "Query",
5045
+ schema: z.array(z.string()).describe("Expand related entities").optional()
5046
+ }
5047
+ ],
5048
+ response: z.void()
5049
+ },
4994
5050
  {
4995
5051
  method: "get",
4996
5052
  path: "/me/mailFolders/:mailFolderId/messages",
@@ -1,5 +1,5 @@
1
- 2026-02-01 10:50:13 INFO: Using environment variables for secrets
2
- 2026-02-01 10:50:13 INFO: Using environment variables for secrets
3
- 2026-02-01 10:50:13 INFO: Using environment variables for secrets
4
- 2026-02-01 10:50:13 INFO: Using environment variables for secrets
5
- 2026-02-01 10:50:13 INFO: Using environment variables for secrets
1
+ 2026-02-02 08:30:22 INFO: Using environment variables for secrets
2
+ 2026-02-02 08:30:22 INFO: Using environment variables for secrets
3
+ 2026-02-02 08:30:22 INFO: Using environment variables for secrets
4
+ 2026-02-02 08:30:22 INFO: Using environment variables for secrets
5
+ 2026-02-02 08:30:22 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.33.0",
3
+ "version": "0.34.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",
@@ -12,6 +12,12 @@
12
12
  "toolName": "list-mail-folders",
13
13
  "scopes": ["Mail.Read"]
14
14
  },
15
+ {
16
+ "pathPattern": "/me/mailFolders/{mailFolder-id}/childFolders",
17
+ "method": "get",
18
+ "toolName": "list-mail-child-folders",
19
+ "scopes": ["Mail.Read"]
20
+ },
15
21
  {
16
22
  "pathPattern": "/me/mailFolders/{mailFolder-id}/messages",
17
23
  "method": "get",