@softeria/ms-365-mcp-server 0.51.0 → 0.52.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.
@@ -328,6 +328,27 @@
328
328
  "toolName": "list-calendars",
329
329
  "scopes": ["Calendars.Read"]
330
330
  },
331
+ {
332
+ "pathPattern": "/me/calendars",
333
+ "method": "post",
334
+ "toolName": "create-calendar",
335
+ "scopes": ["Calendars.ReadWrite"],
336
+ "llmTip": "Creates a new personal calendar. Body: { name: 'My Calendar', color: 'auto' }. Available colors: auto, lightBlue, lightGreen, lightOrange, lightGray, lightYellow, lightTeal, lightPink, lightBrown, lightRed, maxColor."
337
+ },
338
+ {
339
+ "pathPattern": "/me/calendars/{calendar-id}",
340
+ "method": "patch",
341
+ "toolName": "update-calendar",
342
+ "scopes": ["Calendars.ReadWrite"],
343
+ "llmTip": "Updates a calendar's properties. Body: { name: 'New Name', color: 'lightBlue' }. Cannot update the default calendar's name."
344
+ },
345
+ {
346
+ "pathPattern": "/me/calendars/{calendar-id}",
347
+ "method": "delete",
348
+ "toolName": "delete-calendar",
349
+ "scopes": ["Calendars.ReadWrite"],
350
+ "llmTip": "Deletes a calendar and all its events. The default calendar cannot be deleted. This action cannot be undone."
351
+ },
331
352
  {
332
353
  "pathPattern": "/me/findMeetingTimes",
333
354
  "method": "post",
@@ -4636,6 +4636,53 @@ const endpoints = makeApi([
4636
4636
  ],
4637
4637
  response: z.void()
4638
4638
  },
4639
+ {
4640
+ method: "post",
4641
+ path: "/me/calendars",
4642
+ alias: "create-calendar",
4643
+ description: `Create a new calendar for a user.`,
4644
+ requestFormat: "json",
4645
+ parameters: [
4646
+ {
4647
+ name: "body",
4648
+ description: `New navigation property`,
4649
+ type: "Body",
4650
+ schema: microsoft_graph_calendar
4651
+ }
4652
+ ],
4653
+ response: z.void()
4654
+ },
4655
+ {
4656
+ method: "patch",
4657
+ path: "/me/calendars/:calendarId",
4658
+ alias: "update-calendar",
4659
+ description: `Update the navigation property calendars in me`,
4660
+ requestFormat: "json",
4661
+ parameters: [
4662
+ {
4663
+ name: "body",
4664
+ description: `New navigation property values`,
4665
+ type: "Body",
4666
+ schema: microsoft_graph_calendar
4667
+ }
4668
+ ],
4669
+ response: z.void()
4670
+ },
4671
+ {
4672
+ method: "delete",
4673
+ path: "/me/calendars/:calendarId",
4674
+ alias: "delete-calendar",
4675
+ description: `Delete a calendar other than the default calendar.`,
4676
+ requestFormat: "json",
4677
+ parameters: [
4678
+ {
4679
+ name: "If-Match",
4680
+ type: "Header",
4681
+ schema: z.string().describe("ETag").optional()
4682
+ }
4683
+ ],
4684
+ response: z.void()
4685
+ },
4639
4686
  {
4640
4687
  method: "get",
4641
4688
  path: "/me/calendars/:calendarId/calendarView",
@@ -1,10 +1,10 @@
1
- 2026-03-31 08:32:57 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
2
- 2026-03-31 08:32:57 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
3
- 2026-03-31 08:32:57 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
4
- 2026-03-31 08:32:57 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/messages
5
- 2026-03-31 08:32:57 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/calendar
6
- 2026-03-31 08:32:59 INFO: Using environment variables for secrets
7
- 2026-03-31 08:32:59 INFO: Using environment variables for secrets
8
- 2026-03-31 08:32:59 INFO: Using environment variables for secrets
9
- 2026-03-31 08:32:59 INFO: Using environment variables for secrets
10
- 2026-03-31 08:32:59 INFO: Using environment variables for secrets
1
+ 2026-03-31 08:52:37 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
2
+ 2026-03-31 08:52:37 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
3
+ 2026-03-31 08:52:37 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
4
+ 2026-03-31 08:52:37 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/messages
5
+ 2026-03-31 08:52:37 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/calendar
6
+ 2026-03-31 08:52:39 INFO: Using environment variables for secrets
7
+ 2026-03-31 08:52:39 INFO: Using environment variables for secrets
8
+ 2026-03-31 08:52:39 INFO: Using environment variables for secrets
9
+ 2026-03-31 08:52:39 INFO: Using environment variables for secrets
10
+ 2026-03-31 08:52:39 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.51.0",
3
+ "version": "0.52.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",
@@ -328,6 +328,27 @@
328
328
  "toolName": "list-calendars",
329
329
  "scopes": ["Calendars.Read"]
330
330
  },
331
+ {
332
+ "pathPattern": "/me/calendars",
333
+ "method": "post",
334
+ "toolName": "create-calendar",
335
+ "scopes": ["Calendars.ReadWrite"],
336
+ "llmTip": "Creates a new personal calendar. Body: { name: 'My Calendar', color: 'auto' }. Available colors: auto, lightBlue, lightGreen, lightOrange, lightGray, lightYellow, lightTeal, lightPink, lightBrown, lightRed, maxColor."
337
+ },
338
+ {
339
+ "pathPattern": "/me/calendars/{calendar-id}",
340
+ "method": "patch",
341
+ "toolName": "update-calendar",
342
+ "scopes": ["Calendars.ReadWrite"],
343
+ "llmTip": "Updates a calendar's properties. Body: { name: 'New Name', color: 'lightBlue' }. Cannot update the default calendar's name."
344
+ },
345
+ {
346
+ "pathPattern": "/me/calendars/{calendar-id}",
347
+ "method": "delete",
348
+ "toolName": "delete-calendar",
349
+ "scopes": ["Calendars.ReadWrite"],
350
+ "llmTip": "Deletes a calendar and all its events. The default calendar cannot be deleted. This action cannot be undone."
351
+ },
331
352
  {
332
353
  "pathPattern": "/me/findMeetingTimes",
333
354
  "method": "post",