productivity

Outlook Calendar

merajmehrabi

by merajmehrabi

Boost productivity with our scheduling app for Outlook. Easily schedule emails, manage calendars, and update attendees w

Integrates with Microsoft Outlook Calendar to enable event management, scheduling, and attendee status updates for enhanced productivity workflows.

github stars

34

0 commentsdiscussion

Both formats append explainx.ai attribution and the canonical URL for this MCP server listing.

Remote server — zero setupDirect Microsoft account authenticationComplete calendar management suite

best for

  • / AI-powered calendar management
  • / Automated scheduling assistance
  • / Meeting coordination workflows
  • / Calendar integration for productivity apps

capabilities

  • / Create calendar events
  • / Delete existing events
  • / Get calendar events for date ranges
  • / Check next available time slots
  • / List all calendars
  • / Update event details

what it does

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.

about

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.

how to install

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.

license

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.

readme

Outlook Calendar MCP Tool

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>

License: MIT

Features

  • View Calendar Events: List events within a date range, view event details, check attendee status
  • Manage Calendar Events: Create new events and meetings, update existing events
  • Calendar Intelligence: Find free time slots for scheduling, identify optimal meeting times
  • Multiple Calendar Support: Access different calendars in your Outlook profile

Prerequisites

  • Windows operating system
  • Microsoft Outlook desktop client installed
  • VBScript support (see VBScript Installation below if you're on Windows 11 24H2+)
  • Node.js (version 14.x or higher)
  • npm (comes with Node.js)

VBScript Installation (Windows 11 24H2+ Users)

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:

  1. Open Settings (Windows + I)
  2. Go to AppsOptional features
  3. Click "View features" next to "Add an optional feature"
  4. Search for "VBScript"
  5. Select VBScript and click Install
  6. Restart your computer after installation

VBScript Deprecation Timeline:

  • Phase 1 (Late 2024+): Available as optional feature in Windows 11 24H2
  • Phase 2 (~2027): Will no longer be enabled by default
  • Phase 3 (Future): Complete removal from Windows

Note: Thanks to community feedback about VBScript deprecation, I'm considering architectural improvements to make the project more future-proof.

Installation

Option 1: Install from npm

npm install -g outlook-calendar-mcp

You can also run it directly without installation using npx:

npx outlook-calendar-mcp

Option 2: Install from source

  1. Clone this repository or download the source code
  2. Install dependencies:
npm install
  1. Run the server:
npm start

MCP Server Configuration

To use this tool with Claude, you need to add it to your MCP settings configuration file.

For Claude Desktop App

Add the following to your Claude Desktop configuration file (located at %APPDATA%\Claude\claude_desktop_config.json):

If installed globally via npm:

{
  "mcpServers": {
    "outlook-calendar": {
      "command": "outlook-calendar-mcp",
      "args": [],
      "env": {}
    }
  }
}

Using npx (without installation):

{
  "mcpServers": {
    "outlook-calendar": {
      "command": "npx",
      "args": ["-y", "outlook-calendar-mcp"],
      "env": {}
    }
  }
}

If installed from source:

{
  "mcpServers": {
    "outlook-calendar": {
      "command": "node",
      "args": ["path/to/outlook-calendar-mcp/src/index.js"],
      "env": {}
    }
  }
}

For Claude VSCode Extension

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):

If installed globally via npm:

{
  "mcpServers": {
    "outlook-calendar": {
      "command": "outlook-calendar-mcp",
      "args": [],
      "env": {}
    }
  }
}

Using npx (without installation):

{
  "mcpServers": {
    "outlook-calendar": {
      "command": "npx",
      "args": ["-y", "outlook-calendar-mcp"],
      "env": {}
    }
  }
}

If installed from source:

{
  "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.

Usage

Once configured, Claude will have access to the following tools:

List Calendar Events

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 Calendar Event

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 Time Slots

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

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 id field from the list_events response. This is the unique EntryID that Outlook uses to identify events.

Update Calendar Event

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

get_calendars

Example: "Show me my available calendars"

Security Notes

  • On first use, Outlook may display security prompts to allow script access
  • The tool only accesses your local Outlook client and does not send calendar data to external servers
  • All calendar operations are performed locally on your computer

Troubleshooting

  • VBScript Not Available (Windows 11 24H2+): If you get errors after a Windows update, VBScript may need to be installed. See VBScript Installation section above
  • "Script execution failed" errors: Usually indicates VBScript is not available or Outlook is not accessible
  • Outlook Security Prompts: If you see security prompts from Outlook, you need to allow the script to access your Outlook data
  • Script Execution Policy: If you encounter script execution errors, you may need to adjust your PowerShell execution policy
  • Path Issues: Ensure the path in your MCP configuration file points to the correct location of the tool

Contributing

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.

License

This project is licensed under the MIT License - see the LICENSE file for details.

FAQ

What is the Outlook Calendar MCP server?
Outlook Calendar is a Model Context Protocol (MCP) server profile on explainx.ai. MCP lets AI hosts (e.g. Claude Desktop, Cursor) call tools and resources through a standard interface; this page summarizes categories, install hints, and community ratings.
How do MCP servers relate to agent skills?
Skills are reusable instruction packages (often SKILL.md); MCP servers expose live capabilities. Teams frequently combine both—skills for workflows, MCP for APIs and data. See explainx.ai/skills and explainx.ai/mcp-servers for parallel directories.
How are reviews shown for Outlook Calendar?
This profile displays 72 aggregated ratings (sample rows for discoverability plus signed-in user reviews). Average score is about 4.6 out of 5—verify behavior in your own environment before production use.

Use Cases

Extended AI Capabilities

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

Context Enhancement

Provide Claude with access to relevant context and data

Example

Load project documentation, access knowledge bases, query databases

Get more accurate, context-aware responses

Workflow Automation

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

Implementation Guide

Prerequisites

  • Claude Desktop 0.7.0+ or Cursor IDE with MCP support
  • Basic understanding of MCP architecture and capabilities
  • Access credentials for integrated services (if required)
  • Willingness to experiment and iterate on configuration

Time Estimate

15-60 minutes depending on server complexity

Installation Steps

  1. 1.Install MCP server: npm install -g [package-name] or via GitHub
  2. 2.Add server configuration to ~/.claude/mcp.json
  3. 3.Provide required credentials and configuration
  4. 4.Restart Claude Desktop to load new server
  5. 5.Test basic functionality with simple prompts
  6. 6.Explore capabilities and experiment with use cases
  7. 7.Document successful patterns for reuse

Troubleshooting

  • MCP server not loading: Check config syntax, verify installation
  • Connection errors: Check network, firewall, credentials
  • Feature not working: Read server docs, check required parameters
  • Performance issues: Monitor resource usage, check for network latency
  • Conflicts with other servers: Check port assignments, namespace collisions

Best Practices

✓ Do

  • +Read server documentation thoroughly before setup
  • +Start with simple use cases to validate functionality
  • +Test in non-production environment first
  • +Monitor resource usage and performance
  • +Keep servers updated for bug fixes and new features
  • +Document configuration for team members
  • +Use environment variables for sensitive configuration

✗ Don't

  • Don't grant overly permissive access to MCP servers
  • Don't skip reading security considerations in docs
  • Don't expose sensitive data without proper controls
  • Don't run untrusted MCP servers without code review
  • Don't ignore error messages—investigate root cause

💡 Pro Tips

  • Combine multiple MCP servers for powerful workflows
  • Create custom MCP servers for your specific needs
  • Share successful configurations with team
  • Use MCP inspector for debugging
  • Join MCP community for tips and troubleshooting

Technical Details

Architecture

Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.

Protocols

  • Model Context Protocol (MCP)
  • JSON-RPC 2.0
  • stdio or HTTP transport

Compatibility

  • Claude Desktop
  • Cursor IDE
  • Custom MCP clients

When to Use This

✓ 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.

Integration

  • Tool composition: Chain multiple MCP tools in workflows
  • Context augmentation: Provide AI with relevant external data
  • Action delegation: Let AI execute tasks on external systems
  • Bidirectional sync: Keep AI context and external systems in sync

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.

List & Promote Your MCP Server

Share your MCP server with the developer community

GET_STARTED →
MCP server reviews

Ratings

4.672 reviews
  • Diego Park· Dec 28, 2024

    Strong directory entry: Outlook Calendar surfaces stars and publisher context so we could sanity-check maintenance before adopting.

  • Ganesh Mohane· Dec 20, 2024

    Strong directory entry: Outlook Calendar surfaces stars and publisher context so we could sanity-check maintenance before adopting.

  • Yuki Anderson· Dec 16, 2024

    According to our notes, Outlook Calendar benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.

  • Evelyn Dixit· Dec 12, 2024

    Outlook Calendar is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.

  • Diego Kim· Dec 8, 2024

    Strong directory entry: Outlook Calendar surfaces stars and publisher context so we could sanity-check maintenance before adopting.

  • Kiara Farah· Dec 4, 2024

    I recommend Outlook Calendar for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.

  • Kiara Ramirez· Dec 4, 2024

    We wired Outlook Calendar into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.

  • Meera Ramirez· Nov 27, 2024

    Outlook Calendar has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.

  • Naina Bansal· Nov 23, 2024

    According to our notes, Outlook Calendar benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.

  • Meera Torres· Nov 19, 2024

    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

1 / 8