Safely schedule Outlook meetings on on-prem Exchange EWS with room-aware slot suggestions, local credentials, preview-confirmed writes, and audit-friendly lifecycle records.
概览
EWS Meeting MCP
The MCP server for safely scheduling Outlook meetings on on-prem Exchange EWS.
EWS Meeting MCP is built for organizations that still run Microsoft Exchange on-premises and cannot expose calendar workflows through cloud-first Microsoft Graph integrations. It keeps credentials local, supports strict enterprise security environments, and requires preview-confirmed writes before creating, updating, or cancelling meetings.
Highlights
- Resolve attendees and Exchange room mailboxes.
- Suggest available meeting slots before booking.
- Preview meeting changes before any write operation.
- Create, update, and cancel Outlook meetings through Exchange EWS.
- Keep Exchange credentials local with environment variables or macOS Keychain.
- Maintain audit-friendly lifecycle records for scheduling actions.
Install
npx -y ews-meeting-mcp@0.1.17
MCP config
{
"mcpServers": {
"ews-meeting-mcp": {
"command": "npx",
"args": ["-y", "ews-meeting-mcp@0.1.17"],
"env": {
"EWS_ENDPOINT": "https://mail.company.com/EWS/Exchange.asmx",
"EWS_EMAIL": "organizer@example.com",
"EWS_USERNAME": "DOMAIN\\username",
"EWS_PASSWORD": "<YOUR_EWS_PASSWORD>",
"EWS_AUTH_TYPE": "NTLM",
"EWS_TIMEZONE": "Asia/Taipei"
}
}
}
}
Repository: https://github.com/ap311036/ews-meeting-mcp
服务器配置
{
"mcpServers": {
"ews-meeting-mcp": {
"command": "npx",
"args": [
"-y",
"ews-meeting-mcp@0.1.17"
],
"env": {
"EWS_ENDPOINT": "https://mail.company.com/EWS/Exchange.asmx",
"EWS_EMAIL": "organizer@example.com",
"EWS_USERNAME": "DOMAIN\\username",
"EWS_PASSWORD": "<YOUR_EWS_PASSWORD>",
"EWS_AUTH_TYPE": "NTLM",
"EWS_TIMEZONE": "Asia/Taipei"
}
}
}
}