
Security News
Ruby's Bundler 4.0.18 Extends Cooldown to bundle lock and bundle cache
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.
@mindstone/mcp-server-microsoft-calendar
Advanced tools
Microsoft 365 Outlook calendar via Graph: list, get, create, update, respond, free/busy.
Microsoft 365 Outlook Calendar MCP server — list, get, create, update, delete, cancel, and respond to events, check free/busy, find meeting times, and list calendars via the Microsoft Graph API.
Cohort-style Microsoft 365 calendar MCP. Reuses the OAuth surface owned by @mindstone/mcp-server-microsoft-mail so the host signs in once and gets calendar plus mail plus files plus Teams plus SharePoint from the same credentials.
mcp-server-microsoft-mail) (MS_CLIENT_ID)STATUS.json@mindstone/mcp-server-microsoft-sharedWhen we ported this in May 2026, Microsoft's own Graph MCP lineup did not yet ship a stand-alone Outlook Calendar server, and the community options at the time treated calendar as its own login surface — every connector ran a separate OAuth dance and stored its own copy of the refresh token. We pulled the bundled connector out of MindstoneRebel as a 1:1 port so that the same five-connector Microsoft 365 cohort (mail, calendar, files, teams, SharePoint) shares a single set of credentials, a single shared-library package for token persistence and request timeouts, and the structured auth_required envelope the host already knows how to recover from. Calendar reuses @mindstone/mcp-server-microsoft-mail's authenticate_microsoft_account tool rather than declaring its own.
"What's on my calendar this afternoon, and find a 30-minute slot tomorrow when both Alice and I are free."
Tools the host calls:
list_events — date range covering the rest of today.find_meeting_times — suggests slots tomorrow when both Alice and the user are free.Response (trimmed):
{
"today": [
{ "id": "AA...=", "subject": "Q3 review", "start": "2026-05-19T15:00:00Z", "end": "2026-05-19T16:00:00Z" }
],
"tomorrow_suggestions": [
{ "start": "2026-05-20T10:00:00", "end": "2026-05-20T10:30:00" },
{ "start": "2026-05-20T14:30:00", "end": "2026-05-20T15:00:00" }
]
}
${MS_CONFIG_DIR}/credentials/${sanitised-email}.token.json and an ${MS_CONFIG_DIR}/accounts.json index. This server reads those files; it does not initiate OAuth itself.After clicking the button, your host will prompt you to fill: MS_CLIENT_ID, MS_CONFIG_DIR, MS_MCP_PACKAGE_ID, MICROSOFT_REQUEST_TIMEOUT_MS.
{
"mcpServers": {
"Microsoft 365 Calendar": {
"command": "npx",
"args": [
"-y",
"@mindstone/mcp-server-microsoft-calendar"
],
"env": {
"MS_CLIENT_ID": "",
"MS_CONFIG_DIR": "",
"MS_MCP_PACKAGE_ID": "Microsoft365Calendar",
"MICROSOFT_REQUEST_TIMEOUT_MS": "60000"
}
}
}
}
cd <path-to-repo>/connectors/microsoft-calendar
npm install
npm run build
npx -y @mindstone/mcp-server-microsoft-calendar
node dist/index.js
This server runs alongside a host application that owns the Microsoft 365 OAuth flow. The host writes credentials to disk; this server reads them.
| Name | Description |
|---|---|
MS_CLIENT_ID | Microsoft Entra (Azure AD) application client ID. |
MS_CONFIG_DIR | Path to the per-user Microsoft config directory (credentials/, accounts.json). |
| Name | Description | Default |
|---|---|---|
MS_ACCOUNT_EMAIL | Account email when running in multi-account per-instance mode. | First account in accounts.json. |
MS_MCP_PACKAGE_ID | Logical package ID surfaced in error responses. | Microsoft365Calendar |
MICROSOFT_REQUEST_TIMEOUT_MS | Override the upstream Microsoft Graph request timeout (max 300000 ms). | 60000 |
MICROSOFT_DISABLE_REFRESH | Set to 1 to disable token refresh on this surface. Tools fail closed with the structured auth_required response so the host can drive reauth. Cloud surfaces set this to 1. | unset |
{
"mcpServers": {
"Microsoft365Calendar": {
"command": "npx",
"args": ["-y", "@mindstone/mcp-server-microsoft-calendar"],
"env": {
"MS_CLIENT_ID": "your-entra-application-client-id",
"MS_CONFIG_DIR": "/absolute/path/to/microsoft-config"
}
}
}
}
Sign in via @mindstone/mcp-server-microsoft-mail's authenticate_microsoft_account first; the calendar tools then reuse the credentials it writes to ${MS_CONFIG_DIR}/.
{
"mcpServers": {
"Microsoft365Calendar": {
"command": "node",
"args": ["<path-to-repo>/connectors/microsoft-calendar/dist/index.js"],
"env": {
"MS_CLIENT_ID": "your-entra-application-client-id",
"MS_CONFIG_DIR": "/absolute/path/to/microsoft-config"
}
}
}
}
| Tool | Description |
|---|---|
list_events | List calendar events within a date range (JSON with per-attendee RSVP status, or agenda-style text). Reports truncated: true when Graph has more pages — narrow the range or raise top (max 100). |
get_event | Get detailed information about a specific calendar event (optionally including attachment metadata; attachmentsTruncated flags further pages). |
create_event | Create a new calendar event (with optional Teams meeting and recurrence). |
update_event | Update an existing calendar event (including adding/removing attendees and recurrence). |
delete_event | Delete a calendar event. |
cancel_event | Cancel a meeting as organizer with an optional message to attendees. |
respond_to_event | Accept, decline, or tentatively accept an event invitation. |
get_free_busy | Check availability/free-busy status for users. |
find_meeting_times | Suggest slots when all given attendees are free. Slots are only suggested when availability for every requested attendee was resolved; otherwise the unresolved attendees are listed in unresolvableAttendees. |
list_calendars | List all calendars the user has access to. |
@mindstone/mcp-server-microsoft-mail so the cohort has a single OAuth surface.0600; this server reads them via the cohort-shared library, which fails closed on malformed files.MICROSOFT_DISABLE_REFRESH=1 is the default on cloud surfaces so the desktop session remains the sole refresh-token authority.<untrusted-content> envelopes; structural-looking fields (IDs, URLs, enum-like values, timestamps) pass through raw only when they match their documented closed format and are enveloped otherwise. Vendor error messages are enveloped before they reach the model.?, #, %, \, whitespace, and ./.. segments) before any network request and URL-encoded at the interpolation site, so a crafted ID cannot reroute the authenticated request.truncated / attachmentsTruncated instead of following vendor-supplied continuation URLs.FSL-1.1-MIT — Functional Source License, Version 1.1, with MIT future licence. Free for non-competing use; relicenses to MIT on the converter date in LICENSE.
FAQs
Microsoft 365 Outlook calendar via Graph: list, get, create, update, respond, free/busy.
We found that @mindstone/mcp-server-microsoft-calendar demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.

Company News
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.