@softeria/ms-365-mcp-server 0.50.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",
@@ -775,6 +796,27 @@
775
796
  "workScopes": ["Sites.Read.All"],
776
797
  "llmTip": "Add $expand=fields to include actual column values. Without it, only metadata is returned."
777
798
  },
799
+ {
800
+ "pathPattern": "/sites/{site-id}/lists/{list-id}/items",
801
+ "method": "post",
802
+ "toolName": "create-sharepoint-list-item",
803
+ "workScopes": ["Sites.ReadWrite.All"],
804
+ "llmTip": "Creates a new item in a SharePoint list. Body: { fields: { Title: 'Item name', ColumnName: 'value', ... } }. Use list-sharepoint-site-lists to find the list ID and get-sharepoint-site-list to discover available columns."
805
+ },
806
+ {
807
+ "pathPattern": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}",
808
+ "method": "patch",
809
+ "toolName": "update-sharepoint-list-item",
810
+ "workScopes": ["Sites.ReadWrite.All"],
811
+ "llmTip": "Updates fields on an existing list item. Body: { fields: { ColumnName: 'new value' } }. Send only the fields you want to change. Use $expand=fields on get-sharepoint-site-list-item to see current values first."
812
+ },
813
+ {
814
+ "pathPattern": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}",
815
+ "method": "delete",
816
+ "toolName": "delete-sharepoint-list-item",
817
+ "workScopes": ["Sites.ReadWrite.All"],
818
+ "llmTip": "Deletes a list item permanently. This cannot be undone — the item is moved to the site recycle bin."
819
+ },
778
820
  {
779
821
  "pathPattern": "/sites/{site-id}/getByPath(path='{path}')",
780
822
  "method": "get",
@@ -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",
@@ -7766,6 +7813,22 @@ To list them, include system in your $select statement.`,
7766
7813
  ],
7767
7814
  response: z.void()
7768
7815
  },
7816
+ {
7817
+ method: "post",
7818
+ path: "/sites/:siteId/lists/:listId/items",
7819
+ alias: "create-sharepoint-list-item",
7820
+ description: `Create a new listItem in a list.`,
7821
+ requestFormat: "json",
7822
+ parameters: [
7823
+ {
7824
+ name: "body",
7825
+ description: `New navigation property`,
7826
+ type: "Body",
7827
+ schema: microsoft_graph_listItem
7828
+ }
7829
+ ],
7830
+ response: z.void()
7831
+ },
7769
7832
  {
7770
7833
  method: "get",
7771
7834
  path: "/sites/:siteId/lists/:listId/items/:listItemId",
@@ -7786,6 +7849,37 @@ To list them, include system in your $select statement.`,
7786
7849
  ],
7787
7850
  response: z.void()
7788
7851
  },
7852
+ {
7853
+ method: "patch",
7854
+ path: "/sites/:siteId/lists/:listId/items/:listItemId",
7855
+ alias: "update-sharepoint-list-item",
7856
+ description: `Update the navigation property items in sites`,
7857
+ requestFormat: "json",
7858
+ parameters: [
7859
+ {
7860
+ name: "body",
7861
+ description: `New navigation property values`,
7862
+ type: "Body",
7863
+ schema: microsoft_graph_listItem
7864
+ }
7865
+ ],
7866
+ response: z.void()
7867
+ },
7868
+ {
7869
+ method: "delete",
7870
+ path: "/sites/:siteId/lists/:listId/items/:listItemId",
7871
+ alias: "delete-sharepoint-list-item",
7872
+ description: `Removes an item from a list.`,
7873
+ requestFormat: "json",
7874
+ parameters: [
7875
+ {
7876
+ name: "If-Match",
7877
+ type: "Header",
7878
+ schema: z.string().describe("ETag").optional()
7879
+ }
7880
+ ],
7881
+ response: z.void()
7882
+ },
7789
7883
  {
7790
7884
  method: "get",
7791
7885
  path: "/sites/delta()",
@@ -1,10 +1,10 @@
1
- 2026-03-31 08:31:31 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
2
- 2026-03-31 08:31:31 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
3
- 2026-03-31 08:31:31 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
4
- 2026-03-31 08:31:31 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/messages
5
- 2026-03-31 08:31:31 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/calendar
6
- 2026-03-31 08:31:33 INFO: Using environment variables for secrets
7
- 2026-03-31 08:31:33 INFO: Using environment variables for secrets
8
- 2026-03-31 08:31:33 INFO: Using environment variables for secrets
9
- 2026-03-31 08:31:33 INFO: Using environment variables for secrets
10
- 2026-03-31 08:31:33 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.50.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",
@@ -775,6 +796,27 @@
775
796
  "workScopes": ["Sites.Read.All"],
776
797
  "llmTip": "Add $expand=fields to include actual column values. Without it, only metadata is returned."
777
798
  },
799
+ {
800
+ "pathPattern": "/sites/{site-id}/lists/{list-id}/items",
801
+ "method": "post",
802
+ "toolName": "create-sharepoint-list-item",
803
+ "workScopes": ["Sites.ReadWrite.All"],
804
+ "llmTip": "Creates a new item in a SharePoint list. Body: { fields: { Title: 'Item name', ColumnName: 'value', ... } }. Use list-sharepoint-site-lists to find the list ID and get-sharepoint-site-list to discover available columns."
805
+ },
806
+ {
807
+ "pathPattern": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}",
808
+ "method": "patch",
809
+ "toolName": "update-sharepoint-list-item",
810
+ "workScopes": ["Sites.ReadWrite.All"],
811
+ "llmTip": "Updates fields on an existing list item. Body: { fields: { ColumnName: 'new value' } }. Send only the fields you want to change. Use $expand=fields on get-sharepoint-site-list-item to see current values first."
812
+ },
813
+ {
814
+ "pathPattern": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}",
815
+ "method": "delete",
816
+ "toolName": "delete-sharepoint-list-item",
817
+ "workScopes": ["Sites.ReadWrite.All"],
818
+ "llmTip": "Deletes a list item permanently. This cannot be undone — the item is moved to the site recycle bin."
819
+ },
778
820
  {
779
821
  "pathPattern": "/sites/{site-id}/getByPath(path='{path}')",
780
822
  "method": "get",