by merajmehrabi
Boost productivity with our scheduling app for Outlook. Easily schedule emails, manage calendars, and update attendees w
Connects AI assistants to your Outlook Calendar through Microsoft account login. Manage calendar events, check availability, and handle scheduling tasks directly from your AI chat.
Outlook Calendar is a community-built MCP server published by merajmehrabi that provides AI assistants with tools and capabilities via the Model Context Protocol. Boost productivity with our scheduling app for Outlook. Easily schedule emails, manage calendars, and update attendees w It is categorized under productivity. This server exposes 7 tools that AI clients can invoke during conversations and coding sessions.
You can install Outlook Calendar in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Outlook Calendar is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Strong directory entry: Outlook Calendar surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Strong directory entry: Outlook Calendar surfaces stars and publisher context so we could sanity-check maintenance before adopting.
According to our notes, Outlook Calendar benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Outlook Calendar is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Strong directory entry: Outlook Calendar surfaces stars and publisher context so we could sanity-check maintenance before adopting.
I recommend Outlook Calendar for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
We wired Outlook Calendar into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Outlook Calendar has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
According to our notes, Outlook Calendar benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Outlook Calendar has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
showing 1-10 of 72
A Model Context Protocol (MCP) server that allows Claude to access and manage your local Microsoft Outlook calendar (Windows only).
<a href="https://glama.ai/mcp/servers/08enllwrbp"> <img width="380" height="200" src="https://glama.ai/mcp/servers/08enllwrbp/badge" alt="Outlook Calendar MCP server" /> </a>Important: Starting with Windows 11 24H2, VBScript is no longer installed by default and must be enabled as an optional feature.
If you're experiencing issues with the MCP server not working after a Windows update, you likely need to install VBScript:
VBScript Deprecation Timeline:
Note: Thanks to community feedback about VBScript deprecation, I'm considering architectural improvements to make the project more future-proof.
npm install -g outlook-calendar-mcp
You can also run it directly without installation using npx:
npx outlook-calendar-mcp
npm install
npm start
To use this tool with Claude, you need to add it to your MCP settings configuration file.
Add the following to your Claude Desktop configuration file (located at %APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"outlook-calendar": {
"command": "outlook-calendar-mcp",
"args": [],
"env": {}
}
}
}
{
"mcpServers": {
"outlook-calendar": {
"command": "npx",
"args": ["-y", "outlook-calendar-mcp"],
"env": {}
}
}
}
{
"mcpServers": {
"outlook-calendar": {
"command": "node",
"args": ["path/to/outlook-calendar-mcp/src/index.js"],
"env": {}
}
}
}
Add the following to your Claude VSCode extension MCP settings file (located at %APPDATA%\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json):
{
"mcpServers": {
"outlook-calendar": {
"command": "outlook-calendar-mcp",
"args": [],
"env": {}
}
}
}
{
"mcpServers": {
"outlook-calendar": {
"command": "npx",
"args": ["-y", "outlook-calendar-mcp"],
"env": {}
}
}
}
{
"mcpServers": {
"outlook-calendar": {
"command": "node",
"args": ["path/to/outlook-calendar-mcp/src/index.js"],
"env": {}
}
}
}
For source installation, replace path/to/outlook-calendar-mcp with the actual path to where you installed this tool.
Once configured, Claude will have access to the following tools:
list_events
- startDate: Start date in MM/DD/YYYY format
- endDate: End date in MM/DD/YYYY format (optional)
- calendar: Calendar name (optional)
Example: "List my calendar events for next week"
create_event
- subject: Event subject/title
- startDate: Start date in MM/DD/YYYY format
- startTime: Start time in HH:MM AM/PM format
- endDate: End date in MM/DD/YYYY format (optional)
- endTime: End time in HH:MM AM/PM format (optional)
- location: Event location (optional)
- body: Event description (optional)
- isMeeting: Whether this is a meeting with attendees (optional)
- attendees: Semicolon-separated list of attendee email addresses (optional)
- calendar: Calendar name (optional)
Example: "Add a meeting with John about the project proposal on Friday at 2 PM"
find_free_slots
- startDate: Start date in MM/DD/YYYY format
- endDate: End date in MM/DD/YYYY format (optional)
- duration: Duration in minutes (optional)
- workDayStart: Work day start hour (0-23) (optional)
- workDayEnd: Work day end hour (0-23) (optional)
- calendar: Calendar name (optional)
Example: "When am I free for a 1-hour meeting this week?"
get_attendee_status
- eventId: Event ID
- calendar: Calendar name (optional)
Example: "Who hasn't responded to my team meeting invitation?"
Important Note: When using operations that require an event ID (update_event, delete_event, get_attendee_status), you must use the
idfield from the list_events response. This is the unique EntryID that Outlook uses to identify events.
update_event
- eventId: Event ID to update
- subject: New event subject/title (optional)
- startDate: New start date in MM/DD/YYYY format (optional)
- startTime: New start time in HH:MM AM/PM format (optional)
- endDate: New end date in MM/DD/YYYY format (optional)
- endTime: New end time in HH:MM AM/PM format (optional)
- location: New event location (optional)
- body: New event description (optional)
- calendar: Calendar name (optional)
Example: "Update my team meeting tomorrow to start at 3 PM instead of 2 PM"
get_calendars
Example: "Show me my available calendars"
We welcome contributions to the Outlook Calendar MCP Tool! Please see our Contributing Guide for details on how to get started.
By participating in this project, you agree to abide by our Code of Conduct.
This project is licensed under the MIT License - see the LICENSE file for details.
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.