@softeria/ms-365-mcp-server 0.50.0 → 0.51.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.
@@ -775,6 +775,27 @@
775
775
  "workScopes": ["Sites.Read.All"],
776
776
  "llmTip": "Add $expand=fields to include actual column values. Without it, only metadata is returned."
777
777
  },
778
+ {
779
+ "pathPattern": "/sites/{site-id}/lists/{list-id}/items",
780
+ "method": "post",
781
+ "toolName": "create-sharepoint-list-item",
782
+ "workScopes": ["Sites.ReadWrite.All"],
783
+ "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."
784
+ },
785
+ {
786
+ "pathPattern": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}",
787
+ "method": "patch",
788
+ "toolName": "update-sharepoint-list-item",
789
+ "workScopes": ["Sites.ReadWrite.All"],
790
+ "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."
791
+ },
792
+ {
793
+ "pathPattern": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}",
794
+ "method": "delete",
795
+ "toolName": "delete-sharepoint-list-item",
796
+ "workScopes": ["Sites.ReadWrite.All"],
797
+ "llmTip": "Deletes a list item permanently. This cannot be undone — the item is moved to the site recycle bin."
798
+ },
778
799
  {
779
800
  "pathPattern": "/sites/{site-id}/getByPath(path='{path}')",
780
801
  "method": "get",
@@ -7766,6 +7766,22 @@ To list them, include system in your $select statement.`,
7766
7766
  ],
7767
7767
  response: z.void()
7768
7768
  },
7769
+ {
7770
+ method: "post",
7771
+ path: "/sites/:siteId/lists/:listId/items",
7772
+ alias: "create-sharepoint-list-item",
7773
+ description: `Create a new listItem in a list.`,
7774
+ requestFormat: "json",
7775
+ parameters: [
7776
+ {
7777
+ name: "body",
7778
+ description: `New navigation property`,
7779
+ type: "Body",
7780
+ schema: microsoft_graph_listItem
7781
+ }
7782
+ ],
7783
+ response: z.void()
7784
+ },
7769
7785
  {
7770
7786
  method: "get",
7771
7787
  path: "/sites/:siteId/lists/:listId/items/:listItemId",
@@ -7786,6 +7802,37 @@ To list them, include system in your $select statement.`,
7786
7802
  ],
7787
7803
  response: z.void()
7788
7804
  },
7805
+ {
7806
+ method: "patch",
7807
+ path: "/sites/:siteId/lists/:listId/items/:listItemId",
7808
+ alias: "update-sharepoint-list-item",
7809
+ description: `Update the navigation property items in sites`,
7810
+ requestFormat: "json",
7811
+ parameters: [
7812
+ {
7813
+ name: "body",
7814
+ description: `New navigation property values`,
7815
+ type: "Body",
7816
+ schema: microsoft_graph_listItem
7817
+ }
7818
+ ],
7819
+ response: z.void()
7820
+ },
7821
+ {
7822
+ method: "delete",
7823
+ path: "/sites/:siteId/lists/:listId/items/:listItemId",
7824
+ alias: "delete-sharepoint-list-item",
7825
+ description: `Removes an item from a list.`,
7826
+ requestFormat: "json",
7827
+ parameters: [
7828
+ {
7829
+ name: "If-Match",
7830
+ type: "Header",
7831
+ schema: z.string().describe("ETag").optional()
7832
+ }
7833
+ ],
7834
+ response: z.void()
7835
+ },
7789
7836
  {
7790
7837
  method: "get",
7791
7838
  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: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
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.51.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",
@@ -775,6 +775,27 @@
775
775
  "workScopes": ["Sites.Read.All"],
776
776
  "llmTip": "Add $expand=fields to include actual column values. Without it, only metadata is returned."
777
777
  },
778
+ {
779
+ "pathPattern": "/sites/{site-id}/lists/{list-id}/items",
780
+ "method": "post",
781
+ "toolName": "create-sharepoint-list-item",
782
+ "workScopes": ["Sites.ReadWrite.All"],
783
+ "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."
784
+ },
785
+ {
786
+ "pathPattern": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}",
787
+ "method": "patch",
788
+ "toolName": "update-sharepoint-list-item",
789
+ "workScopes": ["Sites.ReadWrite.All"],
790
+ "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."
791
+ },
792
+ {
793
+ "pathPattern": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}",
794
+ "method": "delete",
795
+ "toolName": "delete-sharepoint-list-item",
796
+ "workScopes": ["Sites.ReadWrite.All"],
797
+ "llmTip": "Deletes a list item permanently. This cannot be undone — the item is moved to the site recycle bin."
798
+ },
778
799
  {
779
800
  "pathPattern": "/sites/{site-id}/getByPath(path='{path}')",
780
801
  "method": "get",