@softeria/ms-365-mcp-server 0.103.0 → 0.104.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.
@@ -1981,5 +1981,34 @@
1981
1981
  "toolName": "create-contact-in-folder",
1982
1982
  "scopes": ["Contacts.ReadWrite"],
1983
1983
  "llmTip": "Creates a contact inside a specific folder (instead of the default Contacts folder). Body is a contact resource: { givenName, surname, displayName, emailAddresses: [{ address, name }], businessPhones: [], mobilePhone, jobTitle, companyName, ... }. The existing create-outlook-contact (POST /me/contacts) writes to the default folder only; use this when organizing contacts into named folders. Get the folder id via list-contact-folders."
1984
+ },
1985
+ {
1986
+ "pathPattern": "/me/photo/$value",
1987
+ "method": "put",
1988
+ "toolName": "upload-my-profile-photo",
1989
+ "scopes": ["User.ReadWrite"],
1990
+ "contentType": "image/jpeg",
1991
+ "llmTip": "Uploads a new profile photo for the signed-in user. Body is a base64-encoded string of the image bytes (the server decodes before PUT). Photo must be JPEG, max 4 MB. Microsoft 365 generates HD downsized variants automatically (48x48, 64x64, 96x96, 120x120, 240x240, 360x360, 432x432, 504x504, 648x648). For work or school accounts, ProfilePhoto.ReadWrite.All is the more granular alternative permission. Use download-bytes with target=/me/photo/$value to retrieve the current photo."
1992
+ },
1993
+ {
1994
+ "pathPattern": "/me/todo/lists",
1995
+ "method": "post",
1996
+ "toolName": "create-todo-task-list",
1997
+ "scopes": ["Tasks.ReadWrite"],
1998
+ "llmTip": "Creates a new Microsoft To Do task list (the named buckets shown in the To Do app sidebar). Body: { displayName: 'My new list' }. Returns the created todoTaskList with its id, displayName, isOwner, isShared, and wellknownListName ('none' for user-created lists). The built-in lists ('Tasks', 'Flagged emails') already exist and cannot be re-created. Pair with create-todo-task to populate it."
1999
+ },
2000
+ {
2001
+ "pathPattern": "/me/todo/lists/{todoTaskList-id}",
2002
+ "method": "patch",
2003
+ "toolName": "update-todo-task-list",
2004
+ "scopes": ["Tasks.ReadWrite"],
2005
+ "llmTip": "Renames a Microsoft To Do task list. Body: { displayName: 'New name' }. Only displayName is writable. Built-in lists (Flagged emails, the default Tasks list) cannot be renamed — the API returns an error. Get list ids via list-todo-task-lists."
2006
+ },
2007
+ {
2008
+ "pathPattern": "/me/todo/lists/{todoTaskList-id}",
2009
+ "method": "delete",
2010
+ "toolName": "delete-todo-task-list",
2011
+ "scopes": ["Tasks.ReadWrite"],
2012
+ "llmTip": "Deletes a Microsoft To Do task list and ALL of its tasks (cascades). Built-in lists cannot be deleted — the API returns an error for those. Get list ids via list-todo-task-lists. Operation is irreversible."
1984
2013
  }
1985
2014
  ]
@@ -11141,6 +11141,22 @@ getting the user's mailbox settings.`,
11141
11141
  ],
11142
11142
  response: z.void()
11143
11143
  },
11144
+ {
11145
+ method: "put",
11146
+ path: "/me/photo/$value",
11147
+ alias: "upload-my-profile-photo",
11148
+ description: `Update the photo for the specified contact, group, team, or user in a tenant. The size of the photo you can update to is limited to 4 MB. You can use either PATCH or PUT for this operation.`,
11149
+ requestFormat: "binary",
11150
+ parameters: [
11151
+ {
11152
+ name: "body",
11153
+ description: `New media content.`,
11154
+ type: "Body",
11155
+ schema: z.string().describe("Base64-encoded file content. The server decodes it and PUTs the raw bytes to Microsoft Graph.")
11156
+ }
11157
+ ],
11158
+ response: z.void()
11159
+ },
11144
11160
  {
11145
11161
  method: "get",
11146
11162
  path: "/me/planner/tasks",
@@ -11277,6 +11293,53 @@ getting the user's mailbox settings.`,
11277
11293
  ],
11278
11294
  response: z.void()
11279
11295
  },
11296
+ {
11297
+ method: "post",
11298
+ path: "/me/todo/lists",
11299
+ alias: "create-todo-task-list",
11300
+ description: `Create a new lists object.`,
11301
+ requestFormat: "json",
11302
+ parameters: [
11303
+ {
11304
+ name: "body",
11305
+ description: `New navigation property`,
11306
+ type: "Body",
11307
+ schema: microsoft_graph_todoTaskList
11308
+ }
11309
+ ],
11310
+ response: z.void()
11311
+ },
11312
+ {
11313
+ method: "patch",
11314
+ path: "/me/todo/lists/:todoTaskListId",
11315
+ alias: "update-todo-task-list",
11316
+ description: `Update the properties of a todoTaskList object.`,
11317
+ requestFormat: "json",
11318
+ parameters: [
11319
+ {
11320
+ name: "body",
11321
+ description: `New navigation property values`,
11322
+ type: "Body",
11323
+ schema: microsoft_graph_todoTaskList
11324
+ }
11325
+ ],
11326
+ response: z.void()
11327
+ },
11328
+ {
11329
+ method: "delete",
11330
+ path: "/me/todo/lists/:todoTaskListId",
11331
+ alias: "delete-todo-task-list",
11332
+ description: `Deletes a todoTaskList object.`,
11333
+ requestFormat: "json",
11334
+ parameters: [
11335
+ {
11336
+ name: "If-Match",
11337
+ type: "Header",
11338
+ schema: z.string().describe("ETag").optional()
11339
+ }
11340
+ ],
11341
+ response: z.void()
11342
+ },
11280
11343
  {
11281
11344
  method: "get",
11282
11345
  path: "/me/todo/lists/:todoTaskListId/tasks",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softeria/ms-365-mcp-server",
3
- "version": "0.103.0",
3
+ "version": "0.104.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",
@@ -1981,5 +1981,34 @@
1981
1981
  "toolName": "create-contact-in-folder",
1982
1982
  "scopes": ["Contacts.ReadWrite"],
1983
1983
  "llmTip": "Creates a contact inside a specific folder (instead of the default Contacts folder). Body is a contact resource: { givenName, surname, displayName, emailAddresses: [{ address, name }], businessPhones: [], mobilePhone, jobTitle, companyName, ... }. The existing create-outlook-contact (POST /me/contacts) writes to the default folder only; use this when organizing contacts into named folders. Get the folder id via list-contact-folders."
1984
+ },
1985
+ {
1986
+ "pathPattern": "/me/photo/$value",
1987
+ "method": "put",
1988
+ "toolName": "upload-my-profile-photo",
1989
+ "scopes": ["User.ReadWrite"],
1990
+ "contentType": "image/jpeg",
1991
+ "llmTip": "Uploads a new profile photo for the signed-in user. Body is a base64-encoded string of the image bytes (the server decodes before PUT). Photo must be JPEG, max 4 MB. Microsoft 365 generates HD downsized variants automatically (48x48, 64x64, 96x96, 120x120, 240x240, 360x360, 432x432, 504x504, 648x648). For work or school accounts, ProfilePhoto.ReadWrite.All is the more granular alternative permission. Use download-bytes with target=/me/photo/$value to retrieve the current photo."
1992
+ },
1993
+ {
1994
+ "pathPattern": "/me/todo/lists",
1995
+ "method": "post",
1996
+ "toolName": "create-todo-task-list",
1997
+ "scopes": ["Tasks.ReadWrite"],
1998
+ "llmTip": "Creates a new Microsoft To Do task list (the named buckets shown in the To Do app sidebar). Body: { displayName: 'My new list' }. Returns the created todoTaskList with its id, displayName, isOwner, isShared, and wellknownListName ('none' for user-created lists). The built-in lists ('Tasks', 'Flagged emails') already exist and cannot be re-created. Pair with create-todo-task to populate it."
1999
+ },
2000
+ {
2001
+ "pathPattern": "/me/todo/lists/{todoTaskList-id}",
2002
+ "method": "patch",
2003
+ "toolName": "update-todo-task-list",
2004
+ "scopes": ["Tasks.ReadWrite"],
2005
+ "llmTip": "Renames a Microsoft To Do task list. Body: { displayName: 'New name' }. Only displayName is writable. Built-in lists (Flagged emails, the default Tasks list) cannot be renamed — the API returns an error. Get list ids via list-todo-task-lists."
2006
+ },
2007
+ {
2008
+ "pathPattern": "/me/todo/lists/{todoTaskList-id}",
2009
+ "method": "delete",
2010
+ "toolName": "delete-todo-task-list",
2011
+ "scopes": ["Tasks.ReadWrite"],
2012
+ "llmTip": "Deletes a Microsoft To Do task list and ALL of its tasks (cascades). Built-in lists cannot be deleted — the API returns an error for those. Get list ids via list-todo-task-lists. Operation is irreversible."
1984
2013
  }
1985
2014
  ]