@softeria/ms-365-mcp-server 0.46.0 → 0.46.1

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.
@@ -426,19 +426,22 @@
426
426
  "pathPattern": "/me/todo/lists",
427
427
  "method": "get",
428
428
  "toolName": "list-todo-task-lists",
429
- "scopes": ["Tasks.Read"]
429
+ "scopes": ["Tasks.Read"],
430
+ "llmTip": "Lists all To Do task lists. Returns todoTaskList-id needed for all task operations. The default list is typically called 'Tasks'. NOTE: $select is NOT supported by this endpoint — do not pass select parameter, Graph returns 400."
430
431
  },
431
432
  {
432
433
  "pathPattern": "/me/todo/lists/{todoTaskList-id}/tasks",
433
434
  "method": "get",
434
435
  "toolName": "list-todo-tasks",
435
- "scopes": ["Tasks.Read"]
436
+ "scopes": ["Tasks.Read"],
437
+ "llmTip": "Lists tasks in a To Do list. Requires todoTaskList-id — use list-todo-task-lists to find it. NOTE: $select is NOT supported — do not pass select, Graph returns 400. Use $filter=status eq 'notStarted' or $filter=status eq 'completed' to filter by status. Use $top to limit results. Status values: 'notStarted', 'inProgress', 'completed', 'waitingOnOthers', 'deferred'."
436
438
  },
437
439
  {
438
440
  "pathPattern": "/me/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}",
439
441
  "method": "get",
440
442
  "toolName": "get-todo-task",
441
- "scopes": ["Tasks.Read"]
443
+ "scopes": ["Tasks.Read"],
444
+ "llmTip": "Returns a single To Do task. NOTE: $select is NOT supported — do not pass select parameter, Graph returns RequestBroker--ParseUri (400). Use $expand=linkedResources to include linked email/resource. Returns body content (HTML format), checklist items, and linked resources."
442
445
  },
443
446
  {
444
447
  "pathPattern": "/me/todo/lists/{todoTaskList-id}/tasks",
@@ -1,10 +1,10 @@
1
- 2026-03-23 20:16:55 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
2
- 2026-03-23 20:16:55 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
3
- 2026-03-23 20:16:55 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
4
- 2026-03-23 20:16:55 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/messages
5
- 2026-03-23 20:16:55 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/calendar
6
- 2026-03-23 20:16:56 INFO: Using environment variables for secrets
7
- 2026-03-23 20:16:56 INFO: Using environment variables for secrets
8
- 2026-03-23 20:16:56 INFO: Using environment variables for secrets
9
- 2026-03-23 20:16:56 INFO: Using environment variables for secrets
10
- 2026-03-23 20:16:56 INFO: Using environment variables for secrets
1
+ 2026-03-23 22:15:31 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
2
+ 2026-03-23 22:15:31 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
3
+ 2026-03-23 22:15:31 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
4
+ 2026-03-23 22:15:31 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/messages
5
+ 2026-03-23 22:15:31 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/calendar
6
+ 2026-03-23 22:15:32 INFO: Using environment variables for secrets
7
+ 2026-03-23 22:15:32 INFO: Using environment variables for secrets
8
+ 2026-03-23 22:15:32 INFO: Using environment variables for secrets
9
+ 2026-03-23 22:15:32 INFO: Using environment variables for secrets
10
+ 2026-03-23 22:15:32 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.46.0",
3
+ "version": "0.46.1",
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",
@@ -426,19 +426,22 @@
426
426
  "pathPattern": "/me/todo/lists",
427
427
  "method": "get",
428
428
  "toolName": "list-todo-task-lists",
429
- "scopes": ["Tasks.Read"]
429
+ "scopes": ["Tasks.Read"],
430
+ "llmTip": "Lists all To Do task lists. Returns todoTaskList-id needed for all task operations. The default list is typically called 'Tasks'. NOTE: $select is NOT supported by this endpoint — do not pass select parameter, Graph returns 400."
430
431
  },
431
432
  {
432
433
  "pathPattern": "/me/todo/lists/{todoTaskList-id}/tasks",
433
434
  "method": "get",
434
435
  "toolName": "list-todo-tasks",
435
- "scopes": ["Tasks.Read"]
436
+ "scopes": ["Tasks.Read"],
437
+ "llmTip": "Lists tasks in a To Do list. Requires todoTaskList-id — use list-todo-task-lists to find it. NOTE: $select is NOT supported — do not pass select, Graph returns 400. Use $filter=status eq 'notStarted' or $filter=status eq 'completed' to filter by status. Use $top to limit results. Status values: 'notStarted', 'inProgress', 'completed', 'waitingOnOthers', 'deferred'."
436
438
  },
437
439
  {
438
440
  "pathPattern": "/me/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}",
439
441
  "method": "get",
440
442
  "toolName": "get-todo-task",
441
- "scopes": ["Tasks.Read"]
443
+ "scopes": ["Tasks.Read"],
444
+ "llmTip": "Returns a single To Do task. NOTE: $select is NOT supported — do not pass select parameter, Graph returns RequestBroker--ParseUri (400). Use $expand=linkedResources to include linked email/resource. Returns body content (HTML format), checklist items, and linked resources."
442
445
  },
443
446
  {
444
447
  "pathPattern": "/me/todo/lists/{todoTaskList-id}/tasks",