MCP server intelligence profile

Outlook Calendar MCP Server

The Outlook Calendar MCP enables Claude to directly manage Microsoft Outlook calendars on Windows systems, offering a privacy-focused solution that keeps all data local.

Local Onlymerajmehrabi
Awaiting current scanNpm · 1.0.5

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
7Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install outlook-calendar-mcp from npm

Version 1.0.5 declares 1 executable entrypoint.

npm install --save-exact outlook-calendar-mcp@1.0.5
npx -y -p outlook-calendar-mcp@1.0.5 outlook-calendar-mcp
MCP client configuration example
{
  "mcpServers": {
    "outlook-calendar-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "outlook-calendar-mcp@1.0.5",
        "outlook-calendar-mcp"
      ]
    }
  }
}

Identity

Canonical slugoutlook-calendar-mcp-f7c971aaDeploymentLocal Only
Canonical packagenpm:outlook-calendar-mcpRepositorymerajmehrabi/Outlook_Calendar_MCP
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmoutlook-calendar-mcp1.0.54Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmoutlook-calendar-mcp1.0.5CurrentSep 5, 20267 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
outlook-calendar-serverServer-reported name
1Capability groups
Aug 17, 2026Observed

Tools 7

ToolCategoryAnnotationsRisk
create_eventCreate a new calendar event or meeting
Input schema
{
  "type": "object",
  "properties": {
    "subject": {
      "type": "string",
      "description": "Event subject/title"
    },
    "startDate": {
      "type": "string",
      "description": "Start date in MM/DD/YYYY format"
    },
    "startTime": {
      "type": "string",
      "description": "Start time in HH:MM AM/PM format"
    },
    "endDate": {
      "type": "string",
      "description": "End date in MM/DD/YYYY format (optional, defaults to start date)"
    },
    "endTime": {
      "type": "string",
      "description": "End time in HH:MM AM/PM format (optional, defaults to 30 minutes after start time)"
    },
    "location": {
      "type": "string",
      "description": "Event location (optional)"
    },
    "body": {
      "type": "string",
      "description": "Event description/body (optional)"
    },
    "isMeeting": {
      "type": "boolean",
      "description": "Whether this is a meeting with attendees (optional, defaults to false)"
    },
    "attendees": {
      "type": "string",
      "description": "Semicolon-separated list of attendee email addresses (optional)"
    },
    "calendar": {
      "type": "string",
      "description": "Calendar name (optional)"
    }
  },
  "required": [
    "subject",
    "startDate",
    "startTime"
  ]
}
delete_eventDelete a calendar event by its ID
Input schema
{
  "type": "object",
  "properties": {
    "eventId": {
      "type": "string",
      "description": "Event ID to delete"
    },
    "calendar": {
      "type": "string",
      "description": "Calendar name (optional)"
    }
  },
  "required": [
    "eventId"
  ]
}
find_free_slotsFind available time slots in the calendar
Input schema
{
  "type": "object",
  "properties": {
    "startDate": {
      "type": "string",
      "description": "Start date in MM/DD/YYYY format"
    },
    "endDate": {
      "type": "string",
      "description": "End date in MM/DD/YYYY format (optional, defaults to 7 days from start date)"
    },
    "duration": {
      "type": "number",
      "description": "Duration in minutes (optional, defaults to 30)"
    },
    "workDayStart": {
      "type": "number",
      "description": "Work day start hour (0-23) (optional, defaults to 9)"
    },
    "workDayEnd": {
      "type": "number",
      "description": "Work day end hour (0-23) (optional, defaults to 17)"
    },
    "calendar": {
      "type": "string",
      "description": "Calendar name (optional)"
    }
  },
  "required": [
    "startDate"
  ]
}
get_attendee_statusCheck the response status of meeting attendees
Input schema
{
  "type": "object",
  "properties": {
    "eventId": {
      "type": "string",
      "description": "Event ID"
    },
    "calendar": {
      "type": "string",
      "description": "Calendar name (optional)"
    }
  },
  "required": [
    "eventId"
  ]
}
get_calendarsList available calendars
Input schema
{
  "type": "object",
  "properties": {}
}
list_eventsList calendar events within a specified date range
Input schema
{
  "type": "object",
  "properties": {
    "startDate": {
      "type": "string",
      "description": "Start date in MM/DD/YYYY format"
    },
    "endDate": {
      "type": "string",
      "description": "End date in MM/DD/YYYY format"
    },
    "calendar": {
      "type": "string",
      "description": "Calendar name (optional)"
    }
  },
  "required": [
    "startDate",
    "endDate"
  ]
}
update_eventUpdate an existing calendar event
Input schema
{
  "type": "object",
  "properties": {
    "eventId": {
      "type": "string",
      "description": "Event ID to update"
    },
    "subject": {
      "type": "string",
      "description": "New event subject/title (optional)"
    },
    "startDate": {
      "type": "string",
      "description": "New start date in MM/DD/YYYY format (optional)"
    },
    "startTime": {
      "type": "string",
      "description": "New start time in HH:MM AM/PM format (optional)"
    },
    "endDate": {
      "type": "string",
      "description": "New end date in MM/DD/YYYY format (optional)"
    },
    "endTime": {
      "type": "string",
      "description": "New end time in HH:MM AM/PM format (optional)"
    },
    "location": {
      "type": "string",
      "description": "New event location (optional)"
    },
    "body": {
      "type": "string",
      "description": "New event description/body (optional)"
    },
    "calendar": {
      "type": "string",
      "description": "Calendar name (optional)"
    }
  },
  "required": [
    "eventId"
  ]
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Outlook Calendar MCP Server questions

How do I install Outlook Calendar MCP Server?

Install the selected package version with: npm install --save-exact outlook-calendar-mcp@1.0.5

What tools does Outlook Calendar MCP Server provide?

Outlook Calendar MCP Server exposed 7 tools during independent protocol observation, including create_event, delete_event, find_free_slots, get_attendee_status, get_calendars, list_events, update_event.

Is Outlook Calendar MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Company and product intelligence

These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.

Associated company landscape

Microsoft & Azure intelligence →

Association is based on retained identity fields; it does not by itself prove first-party publication.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.