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 me my unread emails from today"
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
MCP server for Microsoft Outlook personal accounts via Microsoft Graph API.
Personal Microsoft accounts only —
@outlook.com,@hotmail.com,@live.com. Work/school accounts (Entra ID) are not supported in v1.
Disclaimer: Independent open-source project. Not affiliated with, endorsed by, or supported by Microsoft Corporation. "Outlook" and "Microsoft Graph" are trademarks of Microsoft.
Who this is for
You'll like this if you're:
An agent builder wiring Outlook into your own infra (OpenClaw, Claude Code, Cursor, custom MCP host) and want a typed tool surface — not stdout you have to parse
Building on personal Microsoft accounts (Outlook.com / Hotmail / Live) and want full control: BYO Azure app, no enterprise consent flow, no shared client ID
Looking for real coverage — mail, calendar, contacts, to-do, drafts, folders, batch ops, threading — instead of a mail-only or calendar-only wrapper
Security-conscious: tokens in the OS keyring (Keychain on macOS), granular
allow_categories, optionalread_onlymode, zero telemetry
This isn't for you if you need work/school M365 accounts (use Microsoft's official tooling — Entra ID auth and admin-consent flows are out of scope here), or if a basic mail-only client would suffice (this has 62 tools — way more than you need for "read my inbox").
How it differs from other Outlook tools you'll find
This is the only first-class MCP server in the personal-Outlook space — most alternatives are bash scripts or skill-shaped CLI wrappers the agent shells out to. That distinction matters: the agent gets typed tool schemas with structured args/returns, not stdout it has to parse. Other things you won't find elsewhere: /$batch-optimized triage (10-20× faster on bulk ops), recursive folder ops with name resolution, granular per-category permissions, multi-account support, and full attachment write paths including >3MB upload sessions for drafts.
Related MCP server: AISecretary
What This Enables
Give your AI agent full Outlook access. Example prompts that just work:
"Summarize my unread email from the past 24 hours and flag anything time-sensitive."
"What's in my Focused Inbox right now? Anything in Other that looks like it belongs up top?"
"Any shipping updates in my inbox? Track what I'm waiting on and when it's supposed to arrive."
"Scan my email for upcoming subscription renewals — what's about to auto-charge in the next two weeks?"
"I've got a trip to Seattle next week — check my calendar for the itinerary and create a To Do task with a packing checklist."
"Draft a reply to the last message from my sister saying I'll call her this weekend."
"Move all newsletter and promotional email from this week to a 'Read Later' folder — batch 20 at a time."
The server exposes 62 discrete tools so the agent can compose its own workflow — read, triage, write, schedule, track tasks — without hardcoded macros.
Works With
Claude Code — add to
~/.claude/settings.jsonundermcpServersCursor — MCP-compatible
Any MCP client — it's a standard stdio MCP server
Listed on the official MCP Registry as io.github.mpalermiti/outlook-mcp.
Features
62 tools across 13 categories:
Auth (1) -- auth status check (login is via CLI)
Mail Read (7) -- list inbox (with Focused Inbox filter), read message, bulk read by ID via
$batch, search (KQL), list folders, delta-sync inbox changes, composed "since last call" digest across mail/events/contactsMail Write (3) -- send, reply/reply-all, forward
Mail Triage (9) -- move, delete (soft by default), flag, categorize, mark read/unread, reclassify (Focused Inbox), list/set/delete per-sender Focused Inbox overrides
Calendar Read (3) -- list events (with recurring expansion), get event details, delta-sync event changes
Calendar Write (4) -- create, update, delete, RSVP (accept/decline/tentative)
Contacts (7) -- list, search, get, create, update, delete, delta-sync changes
To Do (6) -- list task lists, list/create/update/complete/delete tasks
Drafts (5) -- list, create, update, send, delete
Attachments (5) -- list, download, send-with-attachments, attach-to-draft, remove-draft-attachment
Folder Management (3) -- create, rename, delete mail folders
Threading and Batch (3) -- list thread, copy message, batch triage
User and Admin (6) -- whoami, list calendars, list categories, mail tips, accounts
Design principles:
BYOID -- Bring Your Own ID. You register your own Azure AD app. No shared client ID.
Zero telemetry -- no analytics, no local caching, no third-party calls.
Token storage -- OS keyring via
azure-identity(macOS Keychain, Windows Credential Store, Linux Secret Service).Input validation -- all inputs validated (email, Graph IDs, OData, KQL, datetimes) before any API call.
Read-only mode -- set
read_only: truein config to block all write operations.Soft delete -- delete moves to Deleted Items by default. Hard delete requires explicit
permanent: true.Timezone-aware -- calendar operations respect your configured IANA timezone.
Agent-friendly shape (1.8.0)
Two pure-code upgrades that make the same 57 tools cheaper and more recoverable for AI agents:
Concise mode — pass
concise=Trueto the five high-volume read tools (outlook_list_inbox,outlook_read_message,outlook_search_mail,outlook_list_events,outlook_list_thread) to drop bulky fields: full message bodies, per-event attendee lists, quoted prior-message text in threads, body previews/categories on inbox listings. Typical payload reduction ~10×. Defaultconcise=Falsepreserves the existing response shape — strict backward compat.Structured Graph errors — every tool wraps msgraph SDK exceptions into
{code, message, action}responses with operator-friendly recovery hints: re-auth on 401, ROADMAP pointer on 403/ErrorAccessDenied(known unsupported-endpoint dead-ends), re-list on 404/ErrorItemNotFound, back-off on 429, retry on 503.OutlookMCPErrorsubclasses and validation errors pass through unchanged.
Azure AD App Registration
You need to register a free Azure AD app to get a client ID.
Prerequisites (Personal Microsoft Accounts)
Microsoft has deprecated app registration for personal accounts without an Azure AD tenant. You need to create a free Azure account first:
Go to azure.microsoft.com/free and sign up with your personal
@outlook.comaccount. Requires a credit card for identity verification but won't charge you. This creates a proper Azure AD tenant.
Register the App
Go to App Registrations and sign in with your
@outlook.comaccount.Click "+ New registration" and fill in:
Name: anything except Microsoft-branded terms (e.g.
mp-outlook-mcp— names like "Outlook MCP" will be rejected)Supported account types: select "Personal Microsoft accounts only"
Redirect URI: leave blank
Click Register. Copy the Application (client) ID from the overview page.
Go to Authentication (Preview) → Settings tab → toggle "Allow public client flows" to Yes → Save.
Go to API permissions → Add a permission → Microsoft Graph → Delegated permissions → add:
Mail.ReadWrite,Mail.SendCalendars.ReadWriteContacts.ReadWrite,Tasks.ReadWriteUser.Read,offline_access
No client secret is needed. The device code flow uses public client auth.
Quick Start
Install
Option A — from PyPI (recommended):
uv tool install outlook-graph-mcp
# or: pipx install outlook-graph-mcp
# or: pip install outlook-graph-mcpOption B — from source:
git clone https://github.com/mpalermiti/outlook-mcp.git
cd outlook-mcp
uv syncConfigure
Create ~/.outlook-mcp/config.json:
{
"client_id": "YOUR_APPLICATION_CLIENT_ID",
"tenant_id": "consumers",
"timezone": "America/Los_Angeles",
"read_only": true
}The only required field is client_id. Everything else has sensible defaults. Start with read_only: true — flip to false when you're comfortable.
Register with your MCP client
If installed from PyPI:
{
"mcpServers": {
"outlook": {
"command": "outlook-mcp"
}
}
}If installed from source:
{
"mcpServers": {
"outlook": {
"command": "uv",
"args": ["--directory", "/path/to/outlook-mcp", "run", "outlook-mcp"]
}
}
}For OpenClaw, use the openclaw mcp CLI — it writes to mcp.servers in ~/.openclaw/openclaw.json for you:
# If installed from PyPI:
openclaw mcp set outlook '{"command":"outlook-mcp"}'
# If installed from source:
openclaw mcp set outlook '{"command":"uv","args":["--directory","/path/to/outlook-mcp","run","outlook-mcp"]}'
# Verify:
openclaw mcp list
openclaw mcp show outlook --jsonRestart the OpenClaw gateway after registering. See the OpenClaw MCP docs for SSE/HTTP transport variants.
Authenticate
Run this once on the machine where the MCP server will run:
uv run outlook-mcp authYou'll get a URL and a code. Open the URL in any browser, enter the code, and sign in with your Microsoft account. Tokens are cached in the OS keyring — the MCP server picks them up automatically.
Other CLI commands:
uv run outlook-mcp status # Check auth status
uv run outlook-mcp logout # Clear credentials
uv run outlook-mcp serve # Start MCP server (default, used by OpenClaw/Claude)Tool Reference
Auth
Tool | Description |
| Check if authenticated and whether read-only mode is active. |
Note: Authentication is handled via the CLI (
outlook-mcp auth), not through MCP tools. See Authenticate above.
Mail Read
Tool | Description |
| List messages in a folder. |
| Get full message by ID. Format: |
| Bulk read up to 20 messages by ID via Graph |
| Search mail using KQL query. Optionally scope to a folder by name or ID. |
| List mail folders with counts, |
| List only inbox changes since the last call. First call returns a full snapshot plus a |
| One structured "since last call" digest composing mail/events/contacts deltas. Returns counts + |
Mail Write
Tool | Description |
| Send email. Supports TO/CC/BCC, HTML body, importance level. |
| Reply or reply-all to a message. |
| Forward a message to one or more recipients with optional comment. |
Mail Triage
Tool | Description |
| Move a message to a folder by name or ID. |
| Delete a message. Soft delete (Deleted Items) by default. |
| Set follow-up flag: |
| Set categories on a message. |
| Mark a message as read or unread. |
| Move a message between Focused Inbox and Other ( |
| List Focused Inbox per-sender override rules. |
| Upsert a per-sender Focused Inbox override ( |
| Delete a Focused Inbox override by ID. |
Calendar Read
Tool | Description |
| List events in a date range. Expands recurring events. Configurable via |
| Get full event details: attendees, body, online meeting URL, recurrence. |
| List only event changes inside a window since the last call. |
Calendar Write
Tool | Description |
| Create event with location, attendees, recurrence, online meeting support. |
| Update event fields (subject, time, location, body). Only patches changed fields. |
| Delete a calendar event. |
| RSVP to an event: |
Contacts
Tool | Description |
| List contacts with cursor pagination. |
| Search contacts by name or email. |
| Get full contact details by ID. |
| Create a new contact. |
| Update contact fields. |
| Delete a contact. |
| List only contact changes since the last call. Deletes come back as |
To Do
Tool | Description |
| List To Do lists. |
| List tasks with status filter and pagination. |
| Create task with due date, importance, recurrence. |
| Update task fields. |
| Mark task as completed. |
| Delete a task. |
Drafts
Tool | Description |
| List draft messages with pagination. |
| Create a draft. Supports scheduled delivery via |
| Update draft fields. Accepts |
| Send an existing draft. |
| Delete a draft. |
Attachments
Tool | Description |
| List attachments on a message. |
| Download attachment and save decoded bytes to a file. |
| Send message with file attachments (auto upload session for >3MB). |
| Add attachments to an existing draft (auto upload session for >3MB). |
| Remove a single attachment from a draft. |
Folder Management
Tool | Description |
| Create mail folder (top-level or nested). |
| Rename a mail folder. |
| Delete a mail folder (refuses well-known folders). |
Threading and Batch
Tool | Description |
| Get all messages in a conversation thread. |
| Copy a message to another folder. |
| Batch move/flag/categorize/mark_read (max 20 per call). Single Graph |
User and Admin
Tool | Description |
| Get current user profile. |
| List available calendars. |
| List category definitions with colors. |
| Pre-send check (OOF, delivery restrictions). |
| List configured accounts. |
| Switch active account. |
Configuration
Config lives at ~/.outlook-mcp/config.json (created with 0600 permissions).
Field | Type | Default | Description |
|
|
| Azure AD application (client) ID. Required for auth. |
|
|
| Azure AD tenant. Use |
|
|
| IANA timezone (e.g. |
|
|
| When |
|
|
| Optional. Restrict write tools to specific categories (see below). Empty list = all writes allowed when |
Granular Write Permissions (optional)
By default, read_only: false unlocks all write tools. For finer control, set allow_categories to restrict write access to specific categories. Read tools (list, search, get) are always allowed — allow_categories only narrows the write surface.
Available categories:
Category | Tools | Risk |
| create/update/delete draft | Safe — drafts only, no send |
| move, delete (soft), flag, categorize, mark read, copy, batch | Moderate — reversible except hard delete |
| create/rename/delete folder | Moderate |
| send, reply, forward, send_draft, send_with_attachments | Dangerous — sends email on your behalf |
| create/update/delete event, RSVP | Moderate — creates calendar entries |
| create/update/delete contact | Moderate |
| create/update/complete/delete task | Safe — your own task list |
Example policies:
Draft-only assistant (agent can compose drafts, you review and send):
{ "read_only": false, "allow_categories": ["mail_drafts", "mail_triage", "todo_write"] }Calendar-only (agent can manage your schedule, nothing else):
{ "read_only": false, "allow_categories": ["calendar_write"] }Full write access (agent can do everything):
{ "read_only": false }Read-only (safest default, no writes):
{ "read_only": true }When allow_categories is set, any tool in a non-allowed category returns a permission-denied error (PermissionDeniedError) naming the blocked category. When allow_categories is empty (or unset) and read_only is false, all write tools are permitted. read_only: true always takes precedence — if set, all writes are blocked regardless of allow_categories. Unknown category names are rejected at config load time with a validation error; only the seven names above are accepted.
Privacy and Security
Zero telemetry. No analytics, no tracking, no usage data collected.
Zero local caching. Every call goes directly to Microsoft Graph. No local email/calendar storage.
Zero third-party calls. The server only talks to
graph.microsoft.comandlogin.microsoftonline.com.Token storage. OAuth tokens are persisted via
azure-identity'sTokenCachePersistenceOptions. On macOS the OS Keychain is used; on Windows, DPAPI; on Linux with PyGObject/libsecret available, gnome-keyring. On Linux without libsecret (e.g. the isolated venv created byuv tool install), tokens fall back to a0600plaintext file at~/.IdentityService/and the MCP logs a one-time warning at startup. For encrypted storage on Linux, installpython3-gi gnome-keyring libsecret-1-0and re-create the venv with--system-site-packages.No logging of sensitive data. Message bodies, recipient addresses, and tokens are never logged.
Config permissions. Config directory is
0700, config file is0600. Symlinked configs are rejected.Input validation. All user inputs (email addresses, Graph IDs, OData filters, KQL queries, datetimes) are validated and sanitized before reaching the Graph API.
Development
# Install dev dependencies
uv sync --extra dev
# Run tests
uv run pytest
# Lint
uv run ruff check src/ tests/
# Format
uv run ruff format src/ tests/
# Run server locally (stdio)
uv run outlook-mcpRequirements: Python 3.10+
Roadmap
Inbox Rules -- list, create, delete rules
Advanced mail -- raw MIME export, internet message headers
Calendar -- cancel event (with attendee notification)
Checklists -- checklist items on To Do tasks
Enterprise (Entra ID) -- work/school account support
License
MIT. See LICENSE.
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
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/mpalermiti/outlook-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server