@softeria/ms-365-mcp-server 0.62.0 → 0.63.1

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.
@@ -398,7 +398,7 @@
398
398
  {
399
399
  "pathPattern": "/drives/{drive-id}/root",
400
400
  "method": "get",
401
- "toolName": "get-root-folder",
401
+ "toolName": "get-drive-root-item",
402
402
  "scopes": ["Files.Read"]
403
403
  },
404
404
  {
@@ -516,12 +516,33 @@
516
516
  "toolName": "list-onenote-notebooks",
517
517
  "scopes": ["Notes.Read"]
518
518
  },
519
+ {
520
+ "pathPattern": "/me/onenote/notebooks",
521
+ "method": "post",
522
+ "toolName": "create-onenote-notebook",
523
+ "scopes": ["Notes.Create"],
524
+ "llmTip": "Creates a new OneNote notebook. Body: { displayName: 'Notebook Name' }. The name must be unique across the user's notebooks."
525
+ },
519
526
  {
520
527
  "pathPattern": "/me/onenote/notebooks/{notebook-id}/sections",
521
528
  "method": "get",
522
529
  "toolName": "list-onenote-notebook-sections",
523
530
  "scopes": ["Notes.Read"]
524
531
  },
532
+ {
533
+ "pathPattern": "/me/onenote/notebooks/{notebook-id}/sections",
534
+ "method": "post",
535
+ "toolName": "create-onenote-section",
536
+ "scopes": ["Notes.Create"],
537
+ "llmTip": "Creates a new section in a notebook. Body: { displayName: 'Section Name' }."
538
+ },
539
+ {
540
+ "pathPattern": "/me/onenote/sections",
541
+ "method": "get",
542
+ "toolName": "list-all-onenote-sections",
543
+ "scopes": ["Notes.Read"],
544
+ "llmTip": "Lists all sections across all notebooks. Use list-onenote-notebook-sections to list sections within a specific notebook instead."
545
+ },
525
546
  {
526
547
  "pathPattern": "/me/onenote/sections/{onenoteSection-id}/pages",
527
548
  "method": "get",
@@ -550,6 +571,13 @@
550
571
  "contentType": "text/html",
551
572
  "llmTip": "Body must be a full HTML document (with <html><head><title>...</title></head><body>...</body></html>). Partial HTML fails silently."
552
573
  },
574
+ {
575
+ "pathPattern": "/me/onenote/pages/{onenotePage-id}",
576
+ "method": "delete",
577
+ "toolName": "delete-onenote-page",
578
+ "scopes": ["Notes.ReadWrite"],
579
+ "llmTip": "Deletes a OneNote page permanently. This cannot be undone."
580
+ },
553
581
  {
554
582
  "pathPattern": "/me/todo/lists",
555
583
  "method": "get",
@@ -7119,6 +7119,22 @@ resource.`,
7119
7119
  ],
7120
7120
  response: z.void()
7121
7121
  },
7122
+ {
7123
+ method: "post",
7124
+ path: "/me/onenote/notebooks",
7125
+ alias: "create-onenote-notebook",
7126
+ description: `Create a new OneNote notebook.`,
7127
+ requestFormat: "json",
7128
+ parameters: [
7129
+ {
7130
+ name: "body",
7131
+ description: `New navigation property`,
7132
+ type: "Body",
7133
+ schema: microsoft_graph_notebook
7134
+ }
7135
+ ],
7136
+ response: z.void()
7137
+ },
7122
7138
  {
7123
7139
  method: "get",
7124
7140
  path: "/me/onenote/notebooks/:notebookId/sections",
@@ -7169,6 +7185,22 @@ resource.`,
7169
7185
  ],
7170
7186
  response: z.void()
7171
7187
  },
7188
+ {
7189
+ method: "post",
7190
+ path: "/me/onenote/notebooks/:notebookId/sections",
7191
+ alias: "create-onenote-section",
7192
+ description: `Create a new onenoteSection in the specified notebook.`,
7193
+ requestFormat: "json",
7194
+ parameters: [
7195
+ {
7196
+ name: "body",
7197
+ description: `New navigation property`,
7198
+ type: "Body",
7199
+ schema: microsoft_graph_onenoteSection
7200
+ }
7201
+ ],
7202
+ response: z.void()
7203
+ },
7172
7204
  {
7173
7205
  method: "post",
7174
7206
  path: "/me/onenote/pages",
@@ -7185,6 +7217,21 @@ resource.`,
7185
7217
  ],
7186
7218
  response: z.void()
7187
7219
  },
7220
+ {
7221
+ method: "delete",
7222
+ path: "/me/onenote/pages/:onenotePageId",
7223
+ alias: "delete-onenote-page",
7224
+ description: `Delete a OneNote page.`,
7225
+ requestFormat: "json",
7226
+ parameters: [
7227
+ {
7228
+ name: "If-Match",
7229
+ type: "Header",
7230
+ schema: z.string().describe("ETag").optional()
7231
+ }
7232
+ ],
7233
+ response: z.void()
7234
+ },
7188
7235
  {
7189
7236
  method: "get",
7190
7237
  path: "/me/onenote/pages/:onenotePageId/content",
@@ -7193,6 +7240,56 @@ resource.`,
7193
7240
  requestFormat: "json",
7194
7241
  response: z.void()
7195
7242
  },
7243
+ {
7244
+ method: "get",
7245
+ path: "/me/onenote/sections",
7246
+ alias: "list-all-onenote-sections",
7247
+ description: `Retrieve a list of onenoteSection objects.`,
7248
+ requestFormat: "json",
7249
+ parameters: [
7250
+ {
7251
+ name: "$top",
7252
+ type: "Query",
7253
+ schema: z.number().int().gte(0).describe("Show only the first n items").optional()
7254
+ },
7255
+ {
7256
+ name: "$skip",
7257
+ type: "Query",
7258
+ schema: z.number().int().gte(0).describe("Skip the first n items").optional()
7259
+ },
7260
+ {
7261
+ name: "$search",
7262
+ type: "Query",
7263
+ schema: z.string().describe("Search items by search phrases").optional()
7264
+ },
7265
+ {
7266
+ name: "$filter",
7267
+ type: "Query",
7268
+ schema: z.string().describe("Filter items by property values").optional()
7269
+ },
7270
+ {
7271
+ name: "$count",
7272
+ type: "Query",
7273
+ schema: z.boolean().describe("Include count of items").optional()
7274
+ },
7275
+ {
7276
+ name: "$orderby",
7277
+ type: "Query",
7278
+ schema: z.array(z.string()).describe("Order items by property values").optional()
7279
+ },
7280
+ {
7281
+ name: "$select",
7282
+ type: "Query",
7283
+ schema: z.array(z.string()).describe("Select properties to be returned").optional()
7284
+ },
7285
+ {
7286
+ name: "$expand",
7287
+ type: "Query",
7288
+ schema: z.array(z.string()).describe("Expand related entities").optional()
7289
+ }
7290
+ ],
7291
+ response: z.void()
7292
+ },
7196
7293
  {
7197
7294
  method: "get",
7198
7295
  path: "/me/onenote/sections/:onenoteSectionId/pages",
@@ -1,10 +1,10 @@
1
- 2026-04-04 21:12:47 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
2
- 2026-04-04 21:12:47 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
3
- 2026-04-04 21:12:47 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
4
- 2026-04-04 21:12:47 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/messages
5
- 2026-04-04 21:12:47 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/calendar
6
- 2026-04-04 21:12:48 INFO: Using environment variables for secrets
7
- 2026-04-04 21:12:48 INFO: Using environment variables for secrets
8
- 2026-04-04 21:12:48 INFO: Using environment variables for secrets
9
- 2026-04-04 21:12:48 INFO: Using environment variables for secrets
10
- 2026-04-04 21:12:48 INFO: Using environment variables for secrets
1
+ 2026-04-05 08:41:23 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
2
+ 2026-04-05 08:41:23 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
3
+ 2026-04-05 08:41:23 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
4
+ 2026-04-05 08:41:23 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/messages
5
+ 2026-04-05 08:41:23 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/calendar
6
+ 2026-04-05 08:41:25 INFO: Using environment variables for secrets
7
+ 2026-04-05 08:41:25 INFO: Using environment variables for secrets
8
+ 2026-04-05 08:41:25 INFO: Using environment variables for secrets
9
+ 2026-04-05 08:41:25 INFO: Using environment variables for secrets
10
+ 2026-04-05 08:41:25 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.62.0",
3
+ "version": "0.63.1",
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",
@@ -398,7 +398,7 @@
398
398
  {
399
399
  "pathPattern": "/drives/{drive-id}/root",
400
400
  "method": "get",
401
- "toolName": "get-root-folder",
401
+ "toolName": "get-drive-root-item",
402
402
  "scopes": ["Files.Read"]
403
403
  },
404
404
  {
@@ -516,12 +516,33 @@
516
516
  "toolName": "list-onenote-notebooks",
517
517
  "scopes": ["Notes.Read"]
518
518
  },
519
+ {
520
+ "pathPattern": "/me/onenote/notebooks",
521
+ "method": "post",
522
+ "toolName": "create-onenote-notebook",
523
+ "scopes": ["Notes.Create"],
524
+ "llmTip": "Creates a new OneNote notebook. Body: { displayName: 'Notebook Name' }. The name must be unique across the user's notebooks."
525
+ },
519
526
  {
520
527
  "pathPattern": "/me/onenote/notebooks/{notebook-id}/sections",
521
528
  "method": "get",
522
529
  "toolName": "list-onenote-notebook-sections",
523
530
  "scopes": ["Notes.Read"]
524
531
  },
532
+ {
533
+ "pathPattern": "/me/onenote/notebooks/{notebook-id}/sections",
534
+ "method": "post",
535
+ "toolName": "create-onenote-section",
536
+ "scopes": ["Notes.Create"],
537
+ "llmTip": "Creates a new section in a notebook. Body: { displayName: 'Section Name' }."
538
+ },
539
+ {
540
+ "pathPattern": "/me/onenote/sections",
541
+ "method": "get",
542
+ "toolName": "list-all-onenote-sections",
543
+ "scopes": ["Notes.Read"],
544
+ "llmTip": "Lists all sections across all notebooks. Use list-onenote-notebook-sections to list sections within a specific notebook instead."
545
+ },
525
546
  {
526
547
  "pathPattern": "/me/onenote/sections/{onenoteSection-id}/pages",
527
548
  "method": "get",
@@ -550,6 +571,13 @@
550
571
  "contentType": "text/html",
551
572
  "llmTip": "Body must be a full HTML document (with <html><head><title>...</title></head><body>...</body></html>). Partial HTML fails silently."
552
573
  },
574
+ {
575
+ "pathPattern": "/me/onenote/pages/{onenotePage-id}",
576
+ "method": "delete",
577
+ "toolName": "delete-onenote-page",
578
+ "scopes": ["Notes.ReadWrite"],
579
+ "llmTip": "Deletes a OneNote page permanently. This cannot be undone."
580
+ },
553
581
  {
554
582
  "pathPattern": "/me/todo/lists",
555
583
  "method": "get",