@softeria/ms-365-mcp-server 0.120.1 → 0.121.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 +21 -0
- package/dist/generated/client.js +150 -0
- package/package.json +1 -1
- package/src/endpoints.json +21 -0
package/dist/endpoints.json
CHANGED
|
@@ -944,6 +944,27 @@
|
|
|
944
944
|
"presets": ["onenote", "work"],
|
|
945
945
|
"workScopes": ["Notes.Read"]
|
|
946
946
|
},
|
|
947
|
+
{
|
|
948
|
+
"pathPattern": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups",
|
|
949
|
+
"method": "get",
|
|
950
|
+
"toolName": "list-sharepoint-site-onenote-notebook-section-groups",
|
|
951
|
+
"presets": ["onenote", "work"],
|
|
952
|
+
"workScopes": ["Notes.Read"]
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
"pathPattern": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections",
|
|
956
|
+
"method": "get",
|
|
957
|
+
"toolName": "list-sharepoint-site-onenote-section-group-sections",
|
|
958
|
+
"presets": ["onenote", "work"],
|
|
959
|
+
"workScopes": ["Notes.Read"]
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
"pathPattern": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups",
|
|
963
|
+
"method": "get",
|
|
964
|
+
"toolName": "list-sharepoint-site-onenote-section-group-section-groups",
|
|
965
|
+
"presets": ["onenote", "work"],
|
|
966
|
+
"workScopes": ["Notes.Read"]
|
|
967
|
+
},
|
|
947
968
|
{
|
|
948
969
|
"pathPattern": "/sites/{site-id}/onenote/pages/{onenotePage-id}/content",
|
|
949
970
|
"method": "get",
|
package/dist/generated/client.js
CHANGED
|
@@ -13290,6 +13290,56 @@ To list them, include system in your $select statement.`,
|
|
|
13290
13290
|
],
|
|
13291
13291
|
response: z.void()
|
|
13292
13292
|
},
|
|
13293
|
+
{
|
|
13294
|
+
method: "get",
|
|
13295
|
+
path: "/sites/:siteId/onenote/notebooks/:notebookId/sectionGroups",
|
|
13296
|
+
alias: "list-sharepoint-site-onenote-notebook-section-groups",
|
|
13297
|
+
description: `The section groups in the notebook. Read-only. Nullable.`,
|
|
13298
|
+
requestFormat: "json",
|
|
13299
|
+
parameters: [
|
|
13300
|
+
{
|
|
13301
|
+
name: "$top",
|
|
13302
|
+
type: "Query",
|
|
13303
|
+
schema: z.number().int().gte(0).describe("Show only the first n items").optional()
|
|
13304
|
+
},
|
|
13305
|
+
{
|
|
13306
|
+
name: "$skip",
|
|
13307
|
+
type: "Query",
|
|
13308
|
+
schema: z.number().int().gte(0).describe("Skip the first n items").optional()
|
|
13309
|
+
},
|
|
13310
|
+
{
|
|
13311
|
+
name: "$search",
|
|
13312
|
+
type: "Query",
|
|
13313
|
+
schema: z.string().describe("Search items by search phrases").optional()
|
|
13314
|
+
},
|
|
13315
|
+
{
|
|
13316
|
+
name: "$filter",
|
|
13317
|
+
type: "Query",
|
|
13318
|
+
schema: z.string().describe("Filter items by property values").optional()
|
|
13319
|
+
},
|
|
13320
|
+
{
|
|
13321
|
+
name: "$count",
|
|
13322
|
+
type: "Query",
|
|
13323
|
+
schema: z.boolean().describe("Include count of items").optional()
|
|
13324
|
+
},
|
|
13325
|
+
{
|
|
13326
|
+
name: "$orderby",
|
|
13327
|
+
type: "Query",
|
|
13328
|
+
schema: z.array(z.string()).describe("Order items by property values").optional()
|
|
13329
|
+
},
|
|
13330
|
+
{
|
|
13331
|
+
name: "$select",
|
|
13332
|
+
type: "Query",
|
|
13333
|
+
schema: z.array(z.string()).describe("Select properties to be returned").optional()
|
|
13334
|
+
},
|
|
13335
|
+
{
|
|
13336
|
+
name: "$expand",
|
|
13337
|
+
type: "Query",
|
|
13338
|
+
schema: z.array(z.string()).describe("Expand related entities").optional()
|
|
13339
|
+
}
|
|
13340
|
+
],
|
|
13341
|
+
response: z.void()
|
|
13342
|
+
},
|
|
13293
13343
|
{
|
|
13294
13344
|
method: "get",
|
|
13295
13345
|
path: "/sites/:siteId/onenote/notebooks/:notebookId/sections",
|
|
@@ -13348,6 +13398,106 @@ To list them, include system in your $select statement.`,
|
|
|
13348
13398
|
requestFormat: "json",
|
|
13349
13399
|
response: z.void()
|
|
13350
13400
|
},
|
|
13401
|
+
{
|
|
13402
|
+
method: "get",
|
|
13403
|
+
path: "/sites/:siteId/onenote/sectionGroups/:sectionGroupId/sectionGroups",
|
|
13404
|
+
alias: "list-sharepoint-site-onenote-section-group-section-groups",
|
|
13405
|
+
description: `The section groups in the section. Read-only. Nullable.`,
|
|
13406
|
+
requestFormat: "json",
|
|
13407
|
+
parameters: [
|
|
13408
|
+
{
|
|
13409
|
+
name: "$top",
|
|
13410
|
+
type: "Query",
|
|
13411
|
+
schema: z.number().int().gte(0).describe("Show only the first n items").optional()
|
|
13412
|
+
},
|
|
13413
|
+
{
|
|
13414
|
+
name: "$skip",
|
|
13415
|
+
type: "Query",
|
|
13416
|
+
schema: z.number().int().gte(0).describe("Skip the first n items").optional()
|
|
13417
|
+
},
|
|
13418
|
+
{
|
|
13419
|
+
name: "$search",
|
|
13420
|
+
type: "Query",
|
|
13421
|
+
schema: z.string().describe("Search items by search phrases").optional()
|
|
13422
|
+
},
|
|
13423
|
+
{
|
|
13424
|
+
name: "$filter",
|
|
13425
|
+
type: "Query",
|
|
13426
|
+
schema: z.string().describe("Filter items by property values").optional()
|
|
13427
|
+
},
|
|
13428
|
+
{
|
|
13429
|
+
name: "$count",
|
|
13430
|
+
type: "Query",
|
|
13431
|
+
schema: z.boolean().describe("Include count of items").optional()
|
|
13432
|
+
},
|
|
13433
|
+
{
|
|
13434
|
+
name: "$orderby",
|
|
13435
|
+
type: "Query",
|
|
13436
|
+
schema: z.array(z.string()).describe("Order items by property values").optional()
|
|
13437
|
+
},
|
|
13438
|
+
{
|
|
13439
|
+
name: "$select",
|
|
13440
|
+
type: "Query",
|
|
13441
|
+
schema: z.array(z.string()).describe("Select properties to be returned").optional()
|
|
13442
|
+
},
|
|
13443
|
+
{
|
|
13444
|
+
name: "$expand",
|
|
13445
|
+
type: "Query",
|
|
13446
|
+
schema: z.array(z.string()).describe("Expand related entities").optional()
|
|
13447
|
+
}
|
|
13448
|
+
],
|
|
13449
|
+
response: z.void()
|
|
13450
|
+
},
|
|
13451
|
+
{
|
|
13452
|
+
method: "get",
|
|
13453
|
+
path: "/sites/:siteId/onenote/sectionGroups/:sectionGroupId/sections",
|
|
13454
|
+
alias: "list-sharepoint-site-onenote-section-group-sections",
|
|
13455
|
+
description: `The sections in the section group. Read-only. Nullable.`,
|
|
13456
|
+
requestFormat: "json",
|
|
13457
|
+
parameters: [
|
|
13458
|
+
{
|
|
13459
|
+
name: "$top",
|
|
13460
|
+
type: "Query",
|
|
13461
|
+
schema: z.number().int().gte(0).describe("Show only the first n items").optional()
|
|
13462
|
+
},
|
|
13463
|
+
{
|
|
13464
|
+
name: "$skip",
|
|
13465
|
+
type: "Query",
|
|
13466
|
+
schema: z.number().int().gte(0).describe("Skip the first n items").optional()
|
|
13467
|
+
},
|
|
13468
|
+
{
|
|
13469
|
+
name: "$search",
|
|
13470
|
+
type: "Query",
|
|
13471
|
+
schema: z.string().describe("Search items by search phrases").optional()
|
|
13472
|
+
},
|
|
13473
|
+
{
|
|
13474
|
+
name: "$filter",
|
|
13475
|
+
type: "Query",
|
|
13476
|
+
schema: z.string().describe("Filter items by property values").optional()
|
|
13477
|
+
},
|
|
13478
|
+
{
|
|
13479
|
+
name: "$count",
|
|
13480
|
+
type: "Query",
|
|
13481
|
+
schema: z.boolean().describe("Include count of items").optional()
|
|
13482
|
+
},
|
|
13483
|
+
{
|
|
13484
|
+
name: "$orderby",
|
|
13485
|
+
type: "Query",
|
|
13486
|
+
schema: z.array(z.string()).describe("Order items by property values").optional()
|
|
13487
|
+
},
|
|
13488
|
+
{
|
|
13489
|
+
name: "$select",
|
|
13490
|
+
type: "Query",
|
|
13491
|
+
schema: z.array(z.string()).describe("Select properties to be returned").optional()
|
|
13492
|
+
},
|
|
13493
|
+
{
|
|
13494
|
+
name: "$expand",
|
|
13495
|
+
type: "Query",
|
|
13496
|
+
schema: z.array(z.string()).describe("Expand related entities").optional()
|
|
13497
|
+
}
|
|
13498
|
+
],
|
|
13499
|
+
response: z.void()
|
|
13500
|
+
},
|
|
13351
13501
|
{
|
|
13352
13502
|
method: "get",
|
|
13353
13503
|
path: "/sites/:siteId/onenote/sections/:onenoteSectionId/pages",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@softeria/ms-365-mcp-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.121.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
|
@@ -944,6 +944,27 @@
|
|
|
944
944
|
"presets": ["onenote", "work"],
|
|
945
945
|
"workScopes": ["Notes.Read"]
|
|
946
946
|
},
|
|
947
|
+
{
|
|
948
|
+
"pathPattern": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups",
|
|
949
|
+
"method": "get",
|
|
950
|
+
"toolName": "list-sharepoint-site-onenote-notebook-section-groups",
|
|
951
|
+
"presets": ["onenote", "work"],
|
|
952
|
+
"workScopes": ["Notes.Read"]
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
"pathPattern": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections",
|
|
956
|
+
"method": "get",
|
|
957
|
+
"toolName": "list-sharepoint-site-onenote-section-group-sections",
|
|
958
|
+
"presets": ["onenote", "work"],
|
|
959
|
+
"workScopes": ["Notes.Read"]
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
"pathPattern": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups",
|
|
963
|
+
"method": "get",
|
|
964
|
+
"toolName": "list-sharepoint-site-onenote-section-group-section-groups",
|
|
965
|
+
"presets": ["onenote", "work"],
|
|
966
|
+
"workScopes": ["Notes.Read"]
|
|
967
|
+
},
|
|
947
968
|
{
|
|
948
969
|
"pathPattern": "/sites/{site-id}/onenote/pages/{onenotePage-id}/content",
|
|
949
970
|
"method": "get",
|