Back to Browse

Outlook MCP Server

Developer ToolsLow Risk10.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

Outlook mail and OneDrive files via Microsoft Graph — read, search, send and organize.

About

Outlook mail and OneDrive files via Microsoft Graph — read, search, send and organize.

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry. Trust signals: trusted author (25/25 approved).

6 files analyzed · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

file_system

Check that this permission is expected for this type of plugin.

Shell Command Execution

Runs commands on your machine. Be cautious — only use if you trust this plugin.

What You'll Need

Set these up before or after installing:

Entra (Azure AD) app (client) id. For browser sign-in, register a public client with redirect URI http://localhost.Optional

Environment variable: OUTLOOK_CLIENT_ID

Directory tenant: a tenant id, or common | organizations | consumers (default common).Optional

Environment variable: OUTLOOK_TENANT_ID

App secret for app-only (client-credentials) auth. Omit to use interactive browser sign-in.Required

Environment variable: OUTLOOK_CLIENT_SECRET

A pre-obtained Microsoft Graph bearer token (alternative to browser or app-only auth).Required

Environment variable: OUTLOOK_TOKEN

Target mailbox (user id or UPN) for app-only auth. Omit to use the signed-in user's mailbox (/me).Optional

Environment variable: OUTLOOK_USER

Access mode: read-only | read-write | admin. Starts read-only; writes need read-write.Optional

Environment variable: OUTLOOK_MODE

Set true to permit sending mail (send/reply/forward). Off by default.Optional

Environment variable: OUTLOOK_ALLOW_SEND

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-dockndevai-mcp-outlook": {
      "env": {
        "OUTLOOK_MODE": "your-outlook-mode-here",
        "OUTLOOK_USER": "your-outlook-user-here",
        "OUTLOOK_TOKEN": "your-outlook-token-here",
        "OUTLOOK_CLIENT_ID": "your-outlook-client-id-here",
        "OUTLOOK_TENANT_ID": "your-outlook-tenant-id-here",
        "OUTLOOK_ALLOW_SEND": "your-outlook-allow-send-here",
        "OUTLOOK_CLIENT_SECRET": "your-outlook-client-secret-here"
      },
      "args": [
        "-y",
        "@dockndevai/mcp-outlook"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

mcp-outlook

npm CI licence

A safe-by-default Model Context Protocol server for Microsoft Outlook mail, over Microsoft Graph. It lets an agent read and operate a mailbox — list folders and messages, full-text search, read bodies and attachment metadata, list contacts, and (in higher modes) create drafts, send / reply / forward, mark read, move messages, and delete. It also manages OneDrive files — browse, search, download, upload, create folders, move/rename, and delete.

Browser sign-in: on first run it opens your browser to the Microsoft sign-in page, then caches the token and refreshes it silently — the server never sees your password.

Part of the dockndevai MCP server suite — one governance model across all of them.

What it gives an agent

The server starts read-only (see Safe by default); higher-capability tools are only registered when you raise the mode.

ToolForNeeds mode
whoamiconfirm which mailbox is in useread-only
list_foldersmail folders with unread/total countsread-only
list_messagesrecent messages (by folder, unread-only)read-only
search_messagesfull-text search across the mailboxread-only
get_messageone message with full body + recipientsread-only
list_attachmentsattachment metadata (bytes not returned)read-only
list_contactspersonal contactsread-only
create_draftprepare a draft without sendingread-write
send_mailcompose & send a new emailread-write + OUTLOOK_ALLOW_SEND
reply_mail / forward_mailreply (all) / forward a messageread-write + OUTLOOK_ALLOW_SEND
mark_readmark read / unread (reversible)read-write
move_messagemove to another folder (reversible)read-write
delete_messagedelete (to Deleted Items)admin + OUTLOOK_ALLOW_DELETE
list_drive_items / get_drive_itembrowse OneDrive files & foldersread-only
search_drive_filessearch OneDriveread-only
download_drive_fileread a OneDrive file's textread-only
upload_drive_filecreate/overwrite a OneDrive fileread-write
create_drive_folder / move_drive_itemcreate folder / move-renameread-write
delete_drive_itemdelete a OneDrive item (→ recycle bin)admin + OUTLOOK_ALLOW_DELETE

Install

npx -y @dockndevai/mcp-outlook

You need an Entra (Azure AD) app registration. For the default browser sign-in, register a public client and add the redirect URI http://localhost (platform: Mobile and desktop applications), then use its Application (client) ID as OUTLOOK_CLIENT_ID. Grant delegated Mail.Read (and Mail.Send / Mail.ReadWrite if you want to send or organize). No client secret is needed for interactive use.

Prefer automation? Use app-only auth instead: set OUTLOOK_CLIENT_SECRET + OUTLOOK_TENANT_ID + OUTLOOK_USER (see Authentication).

Configure

{
  "mcpServers": {
    "outlook": {
      "command": "npx",
      "args": ["-y", "@dockndevai/mcp-outlook"],
      "env": {
        "OUTLOOK_CLIENT_ID": "00000000-0000-0000-0000-000000000000",
        "OUTLOOK_TENANT_ID": "common",
        "OUTLOOK_MODE": "read-only"
      }
    }
  }
}

On first use the server opens your browser to sign in and caches the token at ~/.mcp-outlook/token.json (0600); later runs refresh silently.

See docs/CLIENTS.md for Claude Code / Cursor / Codex / VS Code / Windsurf snippets, and .env.example for every supported variable.

Authentication

Auth mode is chosen automatically (override with OUTLOOK_AUTH):

  • interactive (default) — only OUTLOOK_CLIENT_ID set. Authorization-code + PKCE with a loopback redirect: the browser opens, you approve once, and the access + refresh token are cached on disk. Operates on the signed-in user's mailbox (/me). The server never handles your password.
  • client-credentials (app-only) — OUTLOOK_CLIENT_SECRET present. The server fetches an app token itself; requires OUTLOOK_TENANT_ID and OUTLOOK_USER (the mailbox to act on, since an app token has no signed-in user). Grant the app application Mail permissions with admin consent.
  • token — OUTLOOK_TOKEN set to a pre-obtained Graph bearer token. You manage its lifetime.

Safe by default

The access model is enforced by src/security.ts — defence in depth on top of the Graph token's own scopes/roles:

  • OUTLOOK_MODE — read-only (default) → read-write → admin. A tool is registered only if the mode allows its capability. Read-only exposes the 7 read tools; drafts/moves need read-write; deletes need admin.
  • OUTLOOK_ALLOW_SEND — sending mail (send / reply / forward) can't be undone, so on top of read-write it also requires this flag. Drafting is always allowed in read-write; nothing leaves the mailbox until sent.
  • OUTLOOK_ALLOW_DELETE — deletes require this flag on top of admin mode.
  • OUTLOOK_FOLDER_ALLOWLIST / OUTLOOK_PROTECTED_FOLDERS — confine which folders can be written to / moved into; mark folders (e.g. sentitems, archive) that may be read but never modified.
  • Interactive confirmation — when the client supports MCP elicitation, sending mail and deleting a message pause and ask the human to approve before running; clients that can't elicit fall back to the OUTLOOK_ALLOW_SEND / OUTLOOK_ALLOW_DELETE gates.
  • OUTLOOK_DRY_RUN — validate and log writes without executing them.
  • OUTLOOK_AUDIT_LOG — a JSON audit line per guarded operation, on stderr (default on).
  • Attachment bytes are never returned — list_attachments returns metadata only.

See SECURITY.md.

Developing

npm install
npm run build
# introspect the tool list without signing in (uses a fake token, no network):
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}' | OUTLOOK_TOKEN=x node dist/index.js
npm test

Licence

MIT

Reviews

No reviews yet

Be the first to review this server!