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., "@outlook-mcpShow my unread emails"
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.
Outlook MCP Server (win32com)
An MCP server that controls the Microsoft Outlook desktop app through COM
automation (win32com). It does not use Microsoft Graph — there is no
Azure app registration, no OAuth, no API keys. It operates on whatever
account(s) your local Outlook client is already signed into, which makes it
ideal for corporate environments where Graph API access is locked down.
Requirements
Windows (COM automation is Windows-only)
Classic Outlook desktop installed and configured with an account. The "new Outlook" (the web-based rewrite) does not expose the COM object model and will not work — switch the toggle back to classic Outlook.
Python 3.10+
Related MCP server: MCP Outlook
Installation
git clone <this-repo>
cd outlook_mcp
pip install -e .This installs mcp and pywin32 and registers the outlook-mcp command.
Configure Claude Desktop / Claude Code
Claude Desktop (%APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"outlook": {
"command": "outlook-mcp"
}
}
}Claude Code:
claude mcp add outlook -- outlook-mcpIf Outlook is not running, the first tool call starts it automatically.
Tools
Tool | Description |
| Tree of all mail folders across every account/store |
| Recent emails in a folder (newest first, optional unread-only) |
| Full email by |
| Search a folder by subject / sender / body text |
| Save an email's attachments to a local directory |
| Send (or draft) a new email — plain text or HTML, with attachments |
| Reply / reply-all, with the original quoted below |
| Forward an email, attachments included |
| Mark read / unread |
| Move an email to another folder |
| Move an email to Deleted Items |
| Events in a window around today (recurrences expanded) |
| Create an appointment or send a meeting invite |
| List/search the default Contacts folder |
Emails are addressed by their Outlook EntryID, which list_emails and
search_emails return — pass it to get_email, reply_to_email, etc.
Folders accept well-known names (Inbox, Sent Items, Drafts, ...) or
slash paths like Inbox/Receipts or you@company.com/Inbox to target a
specific account.
Example prompts
"Show my unread emails"
"Search my inbox for emails from Alice about the Q3 budget"
"Reply to that email saying I'll review it by Friday"
"Save the attachments from that email to C:\Users\me\Downloads"
"What's on my calendar this week?"
"Set up a 30-minute meeting with bob@example.com tomorrow at 2pm"
Notes & troubleshooting
Security prompts: depending on your organization's policy, Outlook may show an "Allow access?" dialog when a program reads addresses or sends mail programmatically. Your admin controls this via Group Policy ("Programmatic Access" settings in Trust Center).
"New Outlook" toggle: if tool calls fail with "class not registered" or Outlook opens but nothing happens, you are likely on new Outlook. Switch back to classic Outlook.
Bitness/permissions: run the MCP server as the same user (and not elevated differently) as Outlook, or COM will refuse to connect to the running instance.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/jagarlamudisrinath/outlook-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server