ews-outlook-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ews-outlook-mcpSummarize my unread emails and today's schedule."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ews-outlook-mcp
Personal MCP server that lets Claude read and manage an on-prem Outlook/Exchange mailbox via EWS (Exchange Web Services) with NTLM authentication — no dependency on OAuth or Microsoft 365, built for pure on-prem Exchange (no Microsoft 365/Graph).
Exposed tools
ews_list_inbox— lists the most recent Inbox messagesews_search_inbox— searches the Inbox by subjectews_get_message— fetches the full body of a messageews_reply_message— replies (or reply-all) to an existing messageews_send_message— composes and sends a new emailews_move_message— moves a message to another folder (archive, etc.)ews_list_calendar— calendar events between two datesews_create_event— creates a calendar event/meeting, with optional attendeesews_update_event— reschedules/edits the time, subject, or location of an existing eventews_add_attendee— adds an attendee to an existing event without touching the restews_accept_event/ews_decline_event— responds to received meeting invitationsews_delete_event— deletes a calendar event (sends a cancellation to attendees by default)ews_resolve_contact— looks up a name in the GAL (corporate address book) to get their email before inviting themews_today_summary— unread messages + today's events, at a glanceews_forward_message— forwards a message to new recipients with an optional commentews_flag_message— flags/unflags/completes the follow-up flag on a messageews_list_folders— lists mailbox folders (including custom ones) with their unread counts
Related MCP server: Claude-Read-Outlook-Attachments
Installation
git clone git@github.com:devsergioherrera/Outlook-Exchange-MCP-Server.git
cd Outlook-Exchange-MCP-Server
npm install
npm run buildInstalling for a non-technical user (with Claude Desktop)
To hand this server to another person (not a copy of the same credentials — each user needs their own), the only requirement is having Node.js installed (https://nodejs.org, LTS version — an officially signed installer, which usually clears corporate policies without issue) and Claude Desktop having been opened at least once.
Steps:
Copy this whole folder (without
node_modules, without.env, withoutdist) to the target machine — zip, USB, whatever works.node_modulesanddistregenerate on their own;.envgets written locally with that person's own credentials.Double-click
Instalar.bat.The script (
setup.ps1):Verifies Node.js is installed (if not, it warns and stops).
Runs
npm installandnpm run build.Interactively asks for the Exchange URL, username, and password, and saves them to a local
.envfile (never sent anywhere — it just stays on that machine's disk).Automatically registers the server in
%APPDATA%\Claude\claude_desktop_config.json(creates themcpServers.ews-outlookentry pointing atdist\index.jswith the--openssl-legacy-providerflag), with no manual JSON editing required.
Claude Desktop needs to be fully quit (including the system tray icon) and reopened afterward.
None of this requires admin rights or running an unsigned .exe — just
Node.js (signed, standard installer) and a local PowerShell script, which
tends to sail through corporate IT policies that do block loose executables.
Setting up credentials
The .env file needs to be created manually (never paste a password into a
chat with an AI assistant):
cp .env.example .env
notepad .envFill in EWS_PASSWORD with the account's domain password. The .env file is
in .gitignore and must never be pushed to any repository.
Registering the server in Claude Code
Add this to the MCP server config (claude mcp add or the corresponding
config file). Requires the --openssl-legacy-provider flag (see
"Technical notes" below — without it, NTLMv2 authentication fails on Node 17+
because of the MD4 hash being disabled in OpenSSL 3.x):
{
"mcpServers": {
"ews-outlook": {
"command": "node",
"args": ["--openssl-legacy-provider", "C:\\path\\to\\Outlook-Exchange-MCP-Server\\dist\\index.js"]
}
}
}Or, from an interactive Claude Code session:
claude mcp add ews-outlook -- node --openssl-legacy-provider C:\path\to\Outlook-Exchange-MCP-Server\dist\index.jsRestart Claude Code so it picks up the new server.
.env credentials format
EWS_HOST: only the base host of the on-prem Exchange, e.g.https://mail.yourcompany.com— without a trailing/EWS/Exchange.asmx(node-ews builds that path internally; adding it manually makes calls fail withHTTP 400: Bad Request).EWS_USERNAME: only the Windows/domain username, e.g.jdoe— no domain prefix (yourcompany.com\jdoeproduces an incorrect NTLMv2 hash and Exchange responds withHTTP 401: Unauthorized; the domain is negotiated automatically, coming from the server's own NTLM challenge).EWS_PASSWORD: the account's domain password, as-is.
Technical notes (fixes already applied — leave alone unless the reason is clear)
Patch to
ntlm-client(patches/ntlm-client+0.1.1.patch, applied automatically bynpm installviapostinstall: patch-package): the library (unmaintained) has two compatibility bugs with IIS 10 / modern Exchange:decodeType2Messagereceived the entireresponseobject instead of theWWW-Authenticateheader string, andhasOwnProperty('headers')silently failed on that object → every NTLM auth attempt failed with the generic message"The server didnt respond properly".The regex extracting the NTLM token required the header to start with
NTLM(/^NTLM .../), but IIS returnsWWW-Authenticatewith several schemes together (NTLM <token>, NegotiateorNegotiate, NTLM <token>), so the anchored rule failed depending on order. The^was removed.
--openssl-legacy-provider: NTLMv2 depends on MD4, which OpenSSL 3.x (shipped with Node 17+) disables by default. Without this flag, the final handshake step (createType3Message) blows up witherror:0308010C:digital envelope routines::unsupported.
Security notes
The EWS endpoint is usually
https://<exchange-server>/EWS/Exchange.asmx, over HTTPS/443 — not to be confused with other ports the organization might use for SMTP or other services on the same server.If the Exchange certificate is self-signed, the HTTPS connection may fail certificate validation. If that happens, confirmation is needed before disabling TLS verification — it's not a default fix to apply.
ews_reply_messagesends a real email immediately (SendAndSaveCopy). There's no additional confirmation at this server's level — the confirmation happens in the Claude chat before the tool is invoked.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceMCP server for Claude to access Outlook data via Microsoft Graph APILast updated201811MIT
- AlicenseBqualityCmaintenanceA MCP server for Claude that reads Outlook emails its attachments through the Microsoft Graph API.Last updated616MIT
- AlicenseAqualityDmaintenanceMCP server for any Microsoft Exchange / OWA deployment. Gives LLM agents access to email, calendar, directory search, folders, availability, and meeting analytics via 30 tools.Last updated306MIT
- Flicense-qualityDmaintenanceA Python-based MCP server for Microsoft Outlook integration using Microsoft Graph API, enabling email reading/sending, calendar management, and contact operations through Claude Desktop.Last updated1
Related MCP Connectors
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
Hosted Amazon Seller Central and Amazon Ads MCP server for Claude, ChatGPT, Cursor, and agents.
Managed LinkedIn MCP server for AI agents: search, connect, message and enrich on accounts you own.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/devsergioherrera/Outlook-Exchange-MCP-Server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server