@softeria/ms-365-mcp-server 0.76.0 → 0.77.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 +35 -0
- package/dist/generated/client.js +259 -0
- package/logs/mcp-server.log +10 -10
- package/package.json +1 -1
- package/src/endpoints.json +35 -0
package/dist/endpoints.json
CHANGED
|
@@ -1375,5 +1375,40 @@
|
|
|
1375
1375
|
"toolName": "list-webinar-sessions",
|
|
1376
1376
|
"workScopes": ["VirtualEvent.Read"],
|
|
1377
1377
|
"llmTip": "Lists sessions for a webinar. Each session has startDateTime, endDateTime, joinWebUrl, subject, and is essentially an online meeting associated with the webinar."
|
|
1378
|
+
},
|
|
1379
|
+
{
|
|
1380
|
+
"pathPattern": "/places/{place-id}/graph.room",
|
|
1381
|
+
"method": "get",
|
|
1382
|
+
"toolName": "get-room",
|
|
1383
|
+
"workScopes": ["Place.Read.All"],
|
|
1384
|
+
"llmTip": "Gets a place cast as a room, returning room-specific properties: displayName, emailAddress (for booking), capacity, building, floorNumber, floorLabel, isWheelChairAccessible, audioDeviceName, videoDeviceName, displayDeviceName. The place-id can be the room's ID or email address."
|
|
1385
|
+
},
|
|
1386
|
+
{
|
|
1387
|
+
"pathPattern": "/places/{place-id}/graph.roomList",
|
|
1388
|
+
"method": "get",
|
|
1389
|
+
"toolName": "get-room-list",
|
|
1390
|
+
"workScopes": ["Place.Read.All"],
|
|
1391
|
+
"llmTip": "Gets a place cast as a room list, returning room list properties: displayName, emailAddress, address. Use the place-id (ID or email address) of the room list. Then use list-room-list-rooms to get the rooms within this list."
|
|
1392
|
+
},
|
|
1393
|
+
{
|
|
1394
|
+
"pathPattern": "/places/{place-id}/graph.roomList/rooms",
|
|
1395
|
+
"method": "get",
|
|
1396
|
+
"toolName": "list-room-list-rooms",
|
|
1397
|
+
"workScopes": ["Place.Read.All"],
|
|
1398
|
+
"llmTip": "Lists rooms belonging to a specific room list. The place-id is the ID or email address of the room list (from get-room-list). Returns rooms with displayName, emailAddress, capacity, building, floorNumber, floorLabel, and AV equipment details. Combine with find-meeting-times to find available rooms for booking."
|
|
1399
|
+
},
|
|
1400
|
+
{
|
|
1401
|
+
"pathPattern": "/places/{place-id}/graph.roomList/rooms/{room-id}",
|
|
1402
|
+
"method": "get",
|
|
1403
|
+
"toolName": "get-room-list-room",
|
|
1404
|
+
"workScopes": ["Place.Read.All"],
|
|
1405
|
+
"llmTip": "Gets a specific room within a room list. The place-id is the room list ID or email, and room-id is the specific room ID. Returns full room details including capacity, building, floor, and AV equipment."
|
|
1406
|
+
},
|
|
1407
|
+
{
|
|
1408
|
+
"pathPattern": "/places/{place-id}",
|
|
1409
|
+
"method": "patch",
|
|
1410
|
+
"toolName": "update-place",
|
|
1411
|
+
"workScopes": ["Place.ReadWrite.All"],
|
|
1412
|
+
"llmTip": "Updates properties of a place (room, room list, building, floor, section, desk, workspace). Body can include: displayName, phone, capacity, building, floorNumber, floorLabel, tags, audioDeviceName, videoDeviceName, displayDeviceName, isWheelChairAccessible. Use get-room or get-room-list to verify current values before updating."
|
|
1378
1413
|
}
|
|
1379
1414
|
]
|
package/dist/generated/client.js
CHANGED
|
@@ -3593,6 +3593,120 @@ const microsoft_graph_linkedResourceCollectionResponse = z.object({
|
|
|
3593
3593
|
"@odata.nextLink": z.string().nullable(),
|
|
3594
3594
|
value: z.array(microsoft_graph_linkedResource)
|
|
3595
3595
|
}).partial().passthrough();
|
|
3596
|
+
const microsoft_graph_checkInMethod = z.enum([
|
|
3597
|
+
"unspecified",
|
|
3598
|
+
"manual",
|
|
3599
|
+
"inferred",
|
|
3600
|
+
"verified",
|
|
3601
|
+
"unknownFutureValue"
|
|
3602
|
+
]);
|
|
3603
|
+
const microsoft_graph_checkInClaim = z.object({
|
|
3604
|
+
calendarEventId: z.string().describe(
|
|
3605
|
+
"The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event."
|
|
3606
|
+
).optional(),
|
|
3607
|
+
checkInMethod: microsoft_graph_checkInMethod.optional(),
|
|
3608
|
+
createdDateTime: z.string().regex(
|
|
3609
|
+
/^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
|
|
3610
|
+
).datetime({ offset: true }).describe(
|
|
3611
|
+
"The date and time when the checkInClaim object was created. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z."
|
|
3612
|
+
).nullish()
|
|
3613
|
+
}).passthrough();
|
|
3614
|
+
const microsoft_graph_place = z.object({
|
|
3615
|
+
id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
|
|
3616
|
+
address: microsoft_graph_physicalAddress.optional(),
|
|
3617
|
+
displayName: z.string().describe("The name that is associated with the place.").optional(),
|
|
3618
|
+
geoCoordinates: microsoft_graph_outlookGeoCoordinates.optional(),
|
|
3619
|
+
isWheelChairAccessible: z.boolean().describe("Indicates whether the place is wheelchair accessible.").nullish(),
|
|
3620
|
+
label: z.string().describe("User-defined description of the place.").nullish(),
|
|
3621
|
+
parentId: z.string().describe("The ID of a parent place.").nullish(),
|
|
3622
|
+
phone: z.string().describe("The phone number of the place.").nullish(),
|
|
3623
|
+
tags: z.array(z.string()).describe("Custom tags that are associated with the place for categorization or filtering.").optional(),
|
|
3624
|
+
checkIns: z.array(microsoft_graph_checkInClaim).describe(
|
|
3625
|
+
"A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place."
|
|
3626
|
+
).optional()
|
|
3627
|
+
}).passthrough();
|
|
3628
|
+
const microsoft_graph_bookingType = z.enum(["unknown", "standard", "reserved"]);
|
|
3629
|
+
const microsoft_graph_placeFeatureEnablement = z.enum([
|
|
3630
|
+
"unknown",
|
|
3631
|
+
"enabled",
|
|
3632
|
+
"disabled",
|
|
3633
|
+
"unknownFutureValue"
|
|
3634
|
+
]);
|
|
3635
|
+
const microsoft_graph_room = z.object({
|
|
3636
|
+
id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
|
|
3637
|
+
address: microsoft_graph_physicalAddress.optional(),
|
|
3638
|
+
displayName: z.string().describe("The name that is associated with the place.").optional(),
|
|
3639
|
+
geoCoordinates: microsoft_graph_outlookGeoCoordinates.optional(),
|
|
3640
|
+
isWheelChairAccessible: z.boolean().describe("Indicates whether the place is wheelchair accessible.").nullish(),
|
|
3641
|
+
label: z.string().describe("User-defined description of the place.").nullish(),
|
|
3642
|
+
parentId: z.string().describe("The ID of a parent place.").nullish(),
|
|
3643
|
+
phone: z.string().describe("The phone number of the place.").nullish(),
|
|
3644
|
+
tags: z.array(z.string()).describe("Custom tags that are associated with the place for categorization or filtering.").optional(),
|
|
3645
|
+
checkIns: z.array(microsoft_graph_checkInClaim).describe(
|
|
3646
|
+
"A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place."
|
|
3647
|
+
).optional(),
|
|
3648
|
+
audioDeviceName: z.string().describe("Specifies the name of the audio device in the room.").nullish(),
|
|
3649
|
+
bookingType: microsoft_graph_bookingType.optional(),
|
|
3650
|
+
building: z.string().describe("Specifies the building name or building number that the room is in.").nullish(),
|
|
3651
|
+
capacity: z.number().gte(-2147483648).lte(2147483647).describe("Specifies the capacity of the room.").nullish(),
|
|
3652
|
+
displayDeviceName: z.string().describe("Specifies the name of the display device in the room.").nullish(),
|
|
3653
|
+
emailAddress: z.string().describe("Email address of the room.").nullish(),
|
|
3654
|
+
floorLabel: z.string().describe("Specifies a descriptive label for the floor, for example, P.").nullish(),
|
|
3655
|
+
floorNumber: z.number().gte(-2147483648).lte(2147483647).describe("Specifies the floor number that the room is on.").nullish(),
|
|
3656
|
+
nickname: z.string().describe("Specifies a nickname for the room, for example, 'conf room'.").optional(),
|
|
3657
|
+
placeId: z.string().describe("An alternative immutable unique identifier of the room. Read-only.").nullish(),
|
|
3658
|
+
teamsEnabledState: microsoft_graph_placeFeatureEnablement.optional(),
|
|
3659
|
+
videoDeviceName: z.string().describe("Specifies the name of the video device in the room.").nullish()
|
|
3660
|
+
}).passthrough();
|
|
3661
|
+
const microsoft_graph_placeMode = z.object({}).passthrough();
|
|
3662
|
+
const microsoft_graph_workspace = z.object({
|
|
3663
|
+
id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
|
|
3664
|
+
address: microsoft_graph_physicalAddress.optional(),
|
|
3665
|
+
displayName: z.string().describe("The name that is associated with the place.").optional(),
|
|
3666
|
+
geoCoordinates: microsoft_graph_outlookGeoCoordinates.optional(),
|
|
3667
|
+
isWheelChairAccessible: z.boolean().describe("Indicates whether the place is wheelchair accessible.").nullish(),
|
|
3668
|
+
label: z.string().describe("User-defined description of the place.").nullish(),
|
|
3669
|
+
parentId: z.string().describe("The ID of a parent place.").nullish(),
|
|
3670
|
+
phone: z.string().describe("The phone number of the place.").nullish(),
|
|
3671
|
+
tags: z.array(z.string()).describe("Custom tags that are associated with the place for categorization or filtering.").optional(),
|
|
3672
|
+
checkIns: z.array(microsoft_graph_checkInClaim).describe(
|
|
3673
|
+
"A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place."
|
|
3674
|
+
).optional(),
|
|
3675
|
+
capacity: z.number().gte(-2147483648).lte(2147483647).describe("The maximum number of individual desks within a workspace.").nullish(),
|
|
3676
|
+
displayDeviceName: z.string().describe(
|
|
3677
|
+
"The name of the display device (for example, monitor or projector) that is available in the workspace."
|
|
3678
|
+
).nullish(),
|
|
3679
|
+
emailAddress: z.string().describe(
|
|
3680
|
+
"The email address that is associated with the workspace. This email address is used for booking."
|
|
3681
|
+
).nullish(),
|
|
3682
|
+
mode: microsoft_graph_placeMode.optional(),
|
|
3683
|
+
nickname: z.string().describe(
|
|
3684
|
+
"A short, friendly name for the workspace, often used for easier identification or display in the UI."
|
|
3685
|
+
).optional(),
|
|
3686
|
+
placeId: z.string().describe("An alternative immutable unique identifier of the workspace. Read-only.").nullish()
|
|
3687
|
+
}).passthrough();
|
|
3688
|
+
const microsoft_graph_roomList = z.object({
|
|
3689
|
+
id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
|
|
3690
|
+
address: microsoft_graph_physicalAddress.optional(),
|
|
3691
|
+
displayName: z.string().describe("The name that is associated with the place.").optional(),
|
|
3692
|
+
geoCoordinates: microsoft_graph_outlookGeoCoordinates.optional(),
|
|
3693
|
+
isWheelChairAccessible: z.boolean().describe("Indicates whether the place is wheelchair accessible.").nullish(),
|
|
3694
|
+
label: z.string().describe("User-defined description of the place.").nullish(),
|
|
3695
|
+
parentId: z.string().describe("The ID of a parent place.").nullish(),
|
|
3696
|
+
phone: z.string().describe("The phone number of the place.").nullish(),
|
|
3697
|
+
tags: z.array(z.string()).describe("Custom tags that are associated with the place for categorization or filtering.").optional(),
|
|
3698
|
+
checkIns: z.array(microsoft_graph_checkInClaim).describe(
|
|
3699
|
+
"A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place."
|
|
3700
|
+
).optional(),
|
|
3701
|
+
emailAddress: z.string().describe("The email address of the room list.").nullish(),
|
|
3702
|
+
rooms: z.array(microsoft_graph_room).optional(),
|
|
3703
|
+
workspaces: z.array(microsoft_graph_workspace).optional()
|
|
3704
|
+
}).passthrough();
|
|
3705
|
+
const microsoft_graph_roomCollectionResponse = z.object({
|
|
3706
|
+
"@odata.count": z.number().int().nullable(),
|
|
3707
|
+
"@odata.nextLink": z.string().nullable(),
|
|
3708
|
+
value: z.array(microsoft_graph_room)
|
|
3709
|
+
}).partial().passthrough();
|
|
3596
3710
|
const microsoft_graph_plannerContainerType = z.enum(["group", "unknownFutureValue", "roster"]);
|
|
3597
3711
|
const microsoft_graph_plannerPlanContainer = z.object({
|
|
3598
3712
|
containerId: z.string().describe("The identifier of the resource that contains the plan. Optional.").nullish(),
|
|
@@ -4497,6 +4611,16 @@ const schemas = {
|
|
|
4497
4611
|
microsoft_graph_todoTaskListCollectionResponse,
|
|
4498
4612
|
microsoft_graph_todoTaskCollectionResponse,
|
|
4499
4613
|
microsoft_graph_linkedResourceCollectionResponse,
|
|
4614
|
+
microsoft_graph_checkInMethod,
|
|
4615
|
+
microsoft_graph_checkInClaim,
|
|
4616
|
+
microsoft_graph_place,
|
|
4617
|
+
microsoft_graph_bookingType,
|
|
4618
|
+
microsoft_graph_placeFeatureEnablement,
|
|
4619
|
+
microsoft_graph_room,
|
|
4620
|
+
microsoft_graph_placeMode,
|
|
4621
|
+
microsoft_graph_workspace,
|
|
4622
|
+
microsoft_graph_roomList,
|
|
4623
|
+
microsoft_graph_roomCollectionResponse,
|
|
4500
4624
|
microsoft_graph_plannerContainerType,
|
|
4501
4625
|
microsoft_graph_plannerPlanContainer,
|
|
4502
4626
|
microsoft_graph_plannerBucket,
|
|
@@ -9271,6 +9395,141 @@ For example, if the user uploads a photo that is 504x504 pixels, all but the 648
|
|
|
9271
9395
|
],
|
|
9272
9396
|
response: z.void()
|
|
9273
9397
|
},
|
|
9398
|
+
{
|
|
9399
|
+
method: "patch",
|
|
9400
|
+
path: "/places/:placeId",
|
|
9401
|
+
alias: "update-place",
|
|
9402
|
+
description: `Update the properties of place object that can be a building, floor, section, desk, room, workspace, or roomList. You can identify the place by specifying the id property.`,
|
|
9403
|
+
requestFormat: "json",
|
|
9404
|
+
parameters: [
|
|
9405
|
+
{
|
|
9406
|
+
name: "body",
|
|
9407
|
+
description: `New property values`,
|
|
9408
|
+
type: "Body",
|
|
9409
|
+
schema: microsoft_graph_place
|
|
9410
|
+
}
|
|
9411
|
+
],
|
|
9412
|
+
response: z.void()
|
|
9413
|
+
},
|
|
9414
|
+
{
|
|
9415
|
+
method: "get",
|
|
9416
|
+
path: "/places/:placeId/graph.room",
|
|
9417
|
+
alias: "get-room",
|
|
9418
|
+
description: `Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:
|
|
9419
|
+
- List all buildings.
|
|
9420
|
+
- List all floors.
|
|
9421
|
+
- List all sections.
|
|
9422
|
+
- List all desks.
|
|
9423
|
+
- List all rooms.
|
|
9424
|
+
- List all workspaces.
|
|
9425
|
+
- List all room lists.
|
|
9426
|
+
- List rooms in a specific room list.
|
|
9427
|
+
- List workspaces in a specific room list.`,
|
|
9428
|
+
requestFormat: "json",
|
|
9429
|
+
parameters: [
|
|
9430
|
+
{
|
|
9431
|
+
name: "$select",
|
|
9432
|
+
type: "Query",
|
|
9433
|
+
schema: z.array(z.string()).describe("Select properties to be returned").optional()
|
|
9434
|
+
},
|
|
9435
|
+
{
|
|
9436
|
+
name: "$expand",
|
|
9437
|
+
type: "Query",
|
|
9438
|
+
schema: z.array(z.string()).describe("Expand related entities").optional()
|
|
9439
|
+
}
|
|
9440
|
+
],
|
|
9441
|
+
response: z.void()
|
|
9442
|
+
},
|
|
9443
|
+
{
|
|
9444
|
+
method: "get",
|
|
9445
|
+
path: "/places/:placeId/graph.roomList",
|
|
9446
|
+
alias: "get-room-list",
|
|
9447
|
+
description: `Read the properties of a place object specified by its ID. The place object can be one of the following types: The listed resources are derived from the place object.`,
|
|
9448
|
+
requestFormat: "json",
|
|
9449
|
+
parameters: [
|
|
9450
|
+
{
|
|
9451
|
+
name: "$select",
|
|
9452
|
+
type: "Query",
|
|
9453
|
+
schema: z.array(z.string()).describe("Select properties to be returned").optional()
|
|
9454
|
+
},
|
|
9455
|
+
{
|
|
9456
|
+
name: "$expand",
|
|
9457
|
+
type: "Query",
|
|
9458
|
+
schema: z.array(z.string()).describe("Expand related entities").optional()
|
|
9459
|
+
}
|
|
9460
|
+
],
|
|
9461
|
+
response: z.void()
|
|
9462
|
+
},
|
|
9463
|
+
{
|
|
9464
|
+
method: "get",
|
|
9465
|
+
path: "/places/:placeId/graph.roomList/rooms",
|
|
9466
|
+
alias: "list-room-list-rooms",
|
|
9467
|
+
description: `Get rooms from places`,
|
|
9468
|
+
requestFormat: "json",
|
|
9469
|
+
parameters: [
|
|
9470
|
+
{
|
|
9471
|
+
name: "$top",
|
|
9472
|
+
type: "Query",
|
|
9473
|
+
schema: z.number().int().gte(0).describe("Show only the first n items").optional()
|
|
9474
|
+
},
|
|
9475
|
+
{
|
|
9476
|
+
name: "$skip",
|
|
9477
|
+
type: "Query",
|
|
9478
|
+
schema: z.number().int().gte(0).describe("Skip the first n items").optional()
|
|
9479
|
+
},
|
|
9480
|
+
{
|
|
9481
|
+
name: "$search",
|
|
9482
|
+
type: "Query",
|
|
9483
|
+
schema: z.string().describe("Search items by search phrases").optional()
|
|
9484
|
+
},
|
|
9485
|
+
{
|
|
9486
|
+
name: "$filter",
|
|
9487
|
+
type: "Query",
|
|
9488
|
+
schema: z.string().describe("Filter items by property values").optional()
|
|
9489
|
+
},
|
|
9490
|
+
{
|
|
9491
|
+
name: "$count",
|
|
9492
|
+
type: "Query",
|
|
9493
|
+
schema: z.boolean().describe("Include count of items").optional()
|
|
9494
|
+
},
|
|
9495
|
+
{
|
|
9496
|
+
name: "$orderby",
|
|
9497
|
+
type: "Query",
|
|
9498
|
+
schema: z.array(z.string()).describe("Order items by property values").optional()
|
|
9499
|
+
},
|
|
9500
|
+
{
|
|
9501
|
+
name: "$select",
|
|
9502
|
+
type: "Query",
|
|
9503
|
+
schema: z.array(z.string()).describe("Select properties to be returned").optional()
|
|
9504
|
+
},
|
|
9505
|
+
{
|
|
9506
|
+
name: "$expand",
|
|
9507
|
+
type: "Query",
|
|
9508
|
+
schema: z.array(z.string()).describe("Expand related entities").optional()
|
|
9509
|
+
}
|
|
9510
|
+
],
|
|
9511
|
+
response: z.void()
|
|
9512
|
+
},
|
|
9513
|
+
{
|
|
9514
|
+
method: "get",
|
|
9515
|
+
path: "/places/:placeId/graph.roomList/rooms/:roomId",
|
|
9516
|
+
alias: "get-room-list-room",
|
|
9517
|
+
description: `Get rooms from places`,
|
|
9518
|
+
requestFormat: "json",
|
|
9519
|
+
parameters: [
|
|
9520
|
+
{
|
|
9521
|
+
name: "$select",
|
|
9522
|
+
type: "Query",
|
|
9523
|
+
schema: z.array(z.string()).describe("Select properties to be returned").optional()
|
|
9524
|
+
},
|
|
9525
|
+
{
|
|
9526
|
+
name: "$expand",
|
|
9527
|
+
type: "Query",
|
|
9528
|
+
schema: z.array(z.string()).describe("Expand related entities").optional()
|
|
9529
|
+
}
|
|
9530
|
+
],
|
|
9531
|
+
response: z.void()
|
|
9532
|
+
},
|
|
9274
9533
|
{
|
|
9275
9534
|
method: "get",
|
|
9276
9535
|
path: "/planner/plans/:plannerPlanId",
|
package/logs/mcp-server.log
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
2026-04-
|
|
2
|
-
2026-04-
|
|
3
|
-
2026-04-
|
|
4
|
-
2026-04-
|
|
5
|
-
2026-04-
|
|
6
|
-
2026-04-
|
|
7
|
-
2026-04-
|
|
8
|
-
2026-04-
|
|
9
|
-
2026-04-
|
|
10
|
-
2026-04-
|
|
1
|
+
2026-04-14 20:25:35 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
|
|
2
|
+
2026-04-14 20:25:35 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
|
|
3
|
+
2026-04-14 20:25:35 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
|
|
4
|
+
2026-04-14 20:25:35 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/messages
|
|
5
|
+
2026-04-14 20:25:35 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/calendar
|
|
6
|
+
2026-04-14 20:25:37 INFO: Using environment variables for secrets
|
|
7
|
+
2026-04-14 20:25:37 INFO: Using environment variables for secrets
|
|
8
|
+
2026-04-14 20:25:37 INFO: Using environment variables for secrets
|
|
9
|
+
2026-04-14 20:25:37 INFO: Using environment variables for secrets
|
|
10
|
+
2026-04-14 20:25:37 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.77.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
|
@@ -1375,5 +1375,40 @@
|
|
|
1375
1375
|
"toolName": "list-webinar-sessions",
|
|
1376
1376
|
"workScopes": ["VirtualEvent.Read"],
|
|
1377
1377
|
"llmTip": "Lists sessions for a webinar. Each session has startDateTime, endDateTime, joinWebUrl, subject, and is essentially an online meeting associated with the webinar."
|
|
1378
|
+
},
|
|
1379
|
+
{
|
|
1380
|
+
"pathPattern": "/places/{place-id}/graph.room",
|
|
1381
|
+
"method": "get",
|
|
1382
|
+
"toolName": "get-room",
|
|
1383
|
+
"workScopes": ["Place.Read.All"],
|
|
1384
|
+
"llmTip": "Gets a place cast as a room, returning room-specific properties: displayName, emailAddress (for booking), capacity, building, floorNumber, floorLabel, isWheelChairAccessible, audioDeviceName, videoDeviceName, displayDeviceName. The place-id can be the room's ID or email address."
|
|
1385
|
+
},
|
|
1386
|
+
{
|
|
1387
|
+
"pathPattern": "/places/{place-id}/graph.roomList",
|
|
1388
|
+
"method": "get",
|
|
1389
|
+
"toolName": "get-room-list",
|
|
1390
|
+
"workScopes": ["Place.Read.All"],
|
|
1391
|
+
"llmTip": "Gets a place cast as a room list, returning room list properties: displayName, emailAddress, address. Use the place-id (ID or email address) of the room list. Then use list-room-list-rooms to get the rooms within this list."
|
|
1392
|
+
},
|
|
1393
|
+
{
|
|
1394
|
+
"pathPattern": "/places/{place-id}/graph.roomList/rooms",
|
|
1395
|
+
"method": "get",
|
|
1396
|
+
"toolName": "list-room-list-rooms",
|
|
1397
|
+
"workScopes": ["Place.Read.All"],
|
|
1398
|
+
"llmTip": "Lists rooms belonging to a specific room list. The place-id is the ID or email address of the room list (from get-room-list). Returns rooms with displayName, emailAddress, capacity, building, floorNumber, floorLabel, and AV equipment details. Combine with find-meeting-times to find available rooms for booking."
|
|
1399
|
+
},
|
|
1400
|
+
{
|
|
1401
|
+
"pathPattern": "/places/{place-id}/graph.roomList/rooms/{room-id}",
|
|
1402
|
+
"method": "get",
|
|
1403
|
+
"toolName": "get-room-list-room",
|
|
1404
|
+
"workScopes": ["Place.Read.All"],
|
|
1405
|
+
"llmTip": "Gets a specific room within a room list. The place-id is the room list ID or email, and room-id is the specific room ID. Returns full room details including capacity, building, floor, and AV equipment."
|
|
1406
|
+
},
|
|
1407
|
+
{
|
|
1408
|
+
"pathPattern": "/places/{place-id}",
|
|
1409
|
+
"method": "patch",
|
|
1410
|
+
"toolName": "update-place",
|
|
1411
|
+
"workScopes": ["Place.ReadWrite.All"],
|
|
1412
|
+
"llmTip": "Updates properties of a place (room, room list, building, floor, section, desk, workspace). Body can include: displayName, phone, capacity, building, floorNumber, floorLabel, tags, audioDeviceName, videoDeviceName, displayDeviceName, isWheelChairAccessible. Use get-room or get-room-list to verify current values before updating."
|
|
1378
1413
|
}
|
|
1379
1414
|
]
|