simply-outlook-mcp 0.0.2 → 0.0.4

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.
@@ -4,6 +4,10 @@ export const CREATE_CALENDAR_EVENT_WITH_INVITE_TOOL_NAME = "create-calendar-even
4
4
  const DEFAULT_EVENT_DURATION_MINUTES = 30;
5
5
  export const registerCreateCalendarEventWithInviteTool = async (server, graphService) => {
6
6
  server.tool(CREATE_CALENDAR_EVENT_WITH_INVITE_TOOL_NAME, "Create a calendar event in Outlook and send invitations to specified attendees. Use this tool when you need to invite other people to the event.", {
7
+ userEmails: z
8
+ .string()
9
+ .array()
10
+ .describe("Array of email addresses to invite as attendees. Each attendee will receive a calendar invitation. Use empty array [] if no attendees should be invited."),
7
11
  subject: z.string().describe("The title/subject of the calendar event"),
8
12
  startDateTime: z
9
13
  .string()
@@ -12,18 +16,14 @@ export const registerCreateCalendarEventWithInviteTool = async (server, graphSer
12
16
  .string()
13
17
  .optional()
14
18
  .describe(`The event end date and time in ISO format using local time zone. Optional - if not provided, the event will last ${DEFAULT_EVENT_DURATION_MINUTES} minutes. Format: 'YYYY-MM-DDTHH:mm:ss' (e.g., '2025-12-25T15:00:00')`),
15
- content: z
16
- .string()
17
- .optional()
18
- .describe("Optional description or body content for the event. Must be in markdown or plain text format."),
19
19
  location: z
20
20
  .string()
21
21
  .optional()
22
22
  .describe("Optional location or venue for the event (e.g., 'Conference Room A', 'Zoom Meeting', 'Central Park')"),
23
- userEmails: z
23
+ content: z
24
24
  .string()
25
- .array()
26
- .describe("Array of email addresses to invite as attendees. Each attendee will receive a calendar invitation. Use empty array [] if no attendees should be invited."),
25
+ .optional()
26
+ .describe("Optional description or body content for the event. Must be in markdown or plain text format."),
27
27
  isMeeting: z
28
28
  .boolean()
29
29
  .optional()
@@ -12,14 +12,14 @@ export const registerCreateCalendarEventTool = async (server, graphService) => {
12
12
  .string()
13
13
  .optional()
14
14
  .describe(`The event end date and time in ISO format using local time zone. Optional - if not provided, the event will last ${DEFAULT_EVENT_DURATION_MINUTES} minutes. Format: 'YYYY-MM-DDTHH:mm:ss' (e.g., '2025-12-25T15:00:00')`),
15
- content: z
16
- .string()
17
- .optional()
18
- .describe("Optional description or body content for the event. Must be in markdown or plain text format."),
19
15
  location: z
20
16
  .string()
21
17
  .optional()
22
18
  .describe("Optional location or venue for the event (e.g., 'Conference Room A', 'Airport', 'Central Park')"),
19
+ content: z
20
+ .string()
21
+ .optional()
22
+ .describe("Optional description or body content for the event. Must be in markdown or plain text format."),
23
23
  }, async ({ subject, content, startDateTime, endDateTime, location }) => {
24
24
  try {
25
25
  const startDateTimeUtc = new Date(startDateTime).toISOString();
@@ -7,10 +7,6 @@ export const registerUpdateCalendarEventTool = async (server, graphService) => {
7
7
  .string()
8
8
  .describe("This is a base64-encoded string that uniquely identifies the calendar event to update. Preserve the exact ID format including any trailing '=' padding characters."),
9
9
  subject: z.string().optional().describe("Optional new title/subject for the calendar event"),
10
- content: z
11
- .string()
12
- .optional()
13
- .describe("Optional new description or body content for the event. Must be in markdown or plain text format."),
14
10
  startDateTime: z
15
11
  .string()
16
12
  .optional()
@@ -23,6 +19,10 @@ export const registerUpdateCalendarEventTool = async (server, graphService) => {
23
19
  .string()
24
20
  .optional()
25
21
  .describe("Optional new location or venue for the event (e.g., 'Conference Room A', 'Airport', 'Central Park'). Use empty string to remove location."),
22
+ content: z
23
+ .string()
24
+ .optional()
25
+ .describe("Optional new description or body content for the event. Must be in markdown or plain text format."),
26
26
  }, async ({ id, subject, content, startDateTime, endDateTime, location }) => {
27
27
  try {
28
28
  const startDateTimeUtc = startDateTime ? new Date(startDateTime).toISOString() : undefined;
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const VERSION = "0.0.2";
1
+ export declare const VERSION = "0.0.4";
package/dist/version.js CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.0.2';
1
+ export const VERSION = '0.0.4';
2
2
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -19,7 +19,7 @@
19
19
  "type": "git",
20
20
  "url": "https://github.com/hmmroger/simply-outlook-mcp.git"
21
21
  },
22
- "version": "0.0.2",
22
+ "version": "0.0.4",
23
23
  "files": [
24
24
  "dist/**/*.js",
25
25
  "dist/**/*.d.ts",
@@ -43,28 +43,28 @@
43
43
  "clean": "node -e \"import('fs').then(fs => fs.rmSync('dist', { recursive: true, force: true }))\""
44
44
  },
45
45
  "devDependencies": {
46
- "@eslint/js": "^9.35.0",
47
- "@microsoft/microsoft-graph-types": "^2.40.0",
46
+ "@eslint/js": "^9.39.2",
47
+ "@microsoft/microsoft-graph-types": "^2.43.1",
48
48
  "@types/jsdom": "^21.1.7",
49
49
  "@types/mocha": "^10.0.10",
50
- "@types/node": "^20.19.14",
51
- "@types/yargs": "^17.0.33",
52
- "concurrently": "^9.1.2",
53
- "eslint": "^9.35.0",
50
+ "@types/node": "^20.19.27",
51
+ "@types/yargs": "^17.0.35",
52
+ "concurrently": "^9.2.1",
53
+ "eslint": "^9.39.2",
54
54
  "npm-run-all": "^4.1.5",
55
- "typescript": "^5.8.3",
56
- "typescript-eslint": "^8.43.0"
55
+ "typescript": "^5.9.3",
56
+ "typescript-eslint": "^8.52.0"
57
57
  },
58
58
  "dependencies": {
59
- "@azure/identity": "^4.12.0",
60
- "@azure/identity-cache-persistence": "^1.2.0",
59
+ "@azure/identity": "^4.13.0",
60
+ "@azure/identity-cache-persistence": "^1.2.1",
61
61
  "@microsoft/microsoft-graph-client": "^3.0.7",
62
- "@modelcontextprotocol/sdk": "^1.18.0",
63
- "dompurify": "^3.2.6",
64
- "dotenv": "^17.2.2",
65
- "es-toolkit": "^1.39.10",
62
+ "@modelcontextprotocol/sdk": "^1.25.2",
63
+ "dompurify": "^3.3.1",
64
+ "dotenv": "^17.2.3",
65
+ "es-toolkit": "^1.43.0",
66
66
  "jsdom": "^26.1.0",
67
- "marked": "^16.2.1",
67
+ "marked": "^16.4.2",
68
68
  "node-html-markdown": "^1.3.0",
69
69
  "yargs": "^18.0.0",
70
70
  "zod": "^3.25.76"