← Back to Plugins
MCP Server MCP

EWS Meeting MCP

github By github 👁 1 views ▲ 0 votes

Safely schedule Outlook meetings on on-prem Exchange EWS with preview-confirmed writes.

Homepage Verified source GitHub

Install

npx -y [email protected]

Configuration Example

{
  "remotes": [],
  "packages": [
    {
      "registryType": "npm",
      "identifier": "ews-meeting-mcp",
      "version": "0.1.17",
      "transport": {
        "type": "stdio"
      },
      "environmentVariables": [
        {
          "description": "Exchange EWS endpoint, for example https://mail.company.com/EWS/Exchange.asmx",
          "isRequired": true,
          "format": "string",
          "name": "EWS_ENDPOINT"
        },
        {
          "description": "Mailbox email address used as the meeting organizer.",
          "isRequired": true,
          "format": "string",
          "name": "EWS_EMAIL"
        },
        {
          "description": "Exchange login username, often DOMAIN\\username for NTLM.",
          "isRequired": true,
          "format": "string",
          "name": "EWS_USERNAME"
        },
        {
          "description": "Exchange password. Prefer macOS Keychain variables when possible.",
          "format": "string",
          "isSecret": true,
          "name": "EWS_PASSWORD"
        },
        {
          "description": "Optional macOS Keychain service name for reading the password locally.",
          "format": "string",
          "name": "EWS_PASSWORD_KEYCHAIN_SERVICE"
        },
        {
          "description": "Optional macOS Keychain account. Defaults to EWS_USERNAME when omitted.",
          "format": "string",
          "name": "EWS_PASSWORD_KEYCHAIN_ACCOUNT"
        },
        {
          "description": "Exchange auth type. Usually NTLM for on-prem Exchange.",
          "format": "string",
          "default": "NTLM",
          "name": "EWS_AUTH_TYPE"
        },
        {
          "description": "IANA timezone for calendar operations.",
          "format": "string",
          "default": "Asia/Taipei",
          "name": "EWS_TIMEZONE"
        }
      ]
    }
  ]
}
mcp model-context-protocol npm

Comments

Sign in to leave a comment

Loading comments...