Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’¬ Communication
  3. Microsoft Outlook Mcp
M
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/10/2026, 11:43:41 PM

Microsoft Outlook Mcp

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

Microsoft Outlook (mail) MCP server β€” read, search, and send email through Microsoft Graph.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "microsoft-outlook-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "microsoft-outlook-mcp"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’¬ More in Communication

Documentation Overview

OutlookΒ Β CalendarΒ Β OneDriveΒ Β SharePointΒ Β Contacts

Microsoft MCP

Model Context Protocol servers for Microsoft 365.
Calendar Β· Contacts Β· OneDrive Β· Outlook Β· SharePoint β€” on the official @modelcontextprotocol/sdk, over stdio or Streamable HTTP.

CI coverage license: MIT node MCP SDK

Each server speaks the real MCP protocol and runs over either transport:

  • stdio β€” for local MCP clients that launch the server as a subprocess (Claude Desktop, IDEs, the MCP Inspector).
  • Streamable HTTP β€” for remote/hosted use, with the Microsoft Graph access token supplied per request via Authorization: Bearer.

Servers

Servernpm package (and binary)Tools
Calendarms-calendar-mcp9
Contactsms-contacts-mcp7
OneDrivems-onedrive-mcp9
Outlookmicrosoft-outlook-mcp14
SharePointms-sharepoint-mcp23

All tools are thin wrappers over the Microsoft Graph v1.0 API.

Layout

Code
microsoft-mcp/
β”œβ”€β”€ apps/                       # one MCP server per Microsoft 365 product
β”‚   β”œβ”€β”€ calendar/
β”‚   β”œβ”€β”€ contacts/
β”‚   β”œβ”€β”€ onedrive/
β”‚   β”œβ”€β”€ outlook/
β”‚   └── sharepoint/
β”‚       └── src/
β”‚           β”œβ”€β”€ tools.ts        # declarative tool definitions (schema + handler)
β”‚           └── index.ts        # run({ name, version }, tools)
└── packages/                   # shared building blocks
    β”œβ”€β”€ core/                   # MCP server bootstrap + dual transport (stdio / HTTP)
    β”œβ”€β”€ graph/                  # Microsoft Graph HTTP client
    β”œβ”€β”€ validation/             # id / path / query sanitizers
    └── logger/                 # structured JSON logging (stderr-only β€” stdio-safe)

A server is just a list of tools handed to run():

server.ts
// apps/calendar/src/index.ts
import { run } from "@microsoft-mcp/core";
import { tools } from "./tools.js";

void run({ name: "microsoft-calendar", version: "1.0.0", title: "Microsoft Calendar" }, tools);
ts
// a single tool
defineTool({
  name: "get_event",
  description: "Get a single calendar event by ID.",
  inputSchema: { event_id: z.string().describe("Event ID") },
  confirmationPolicy: "never",
  handler: ({ graph }, { event_id }) => {
    validateId(event_id, "event_id");
    return graph.request("GET", `/me/events/${event_id}`);
  },
});

confirmationPolicy ("always" for mutating/destructive tools, "never" for read-only) is surfaced to clients as MCP readOnlyHint / destructiveHint annotations.

Requirements

  • Node.js >= 20
  • pnpm 10 (corepack enable)

Setup

bash
pnpm install
pnpm build        # build all servers (turbo) -> apps/*/dist/index.js
pnpm check-types  # typecheck everything

Tests & CI

bash
pnpm test            # run the vitest suite once
pnpm test:watch      # watch mode
pnpm test:coverage   # run with a v8 coverage report (-> coverage/)

Tests live next to the code as *.test.ts and run on TypeScript source directly (no build step). The shared packages/* are covered by unit and integration tests β€” including a full Streamable-HTTP round-trip against a live server β€” and CI enforces a coverage floor on them. Each apps/* server ships an invariant suite that locks its tool surface (unique snake_case names, valid schemas and confirmation policies).

Every push and pull request to master runs CI: typecheck β†’ build β†’ tests with coverage. The coverage badge is regenerated from the run.

Authentication

You sign in once with your Microsoft account; the server then caches a refresh token and acquires access tokens silently from then on β€” no pasting, no 1-hour expiry. Sign-in uses your own Microsoft Entra ID app registration (free) so the servers act on your behalf.

1. Register an Entra ID app (one time)

  1. Azure Portal β†’ Microsoft Entra ID β†’ App registrations β†’ New registration. Name it anything; pick the Supported account types that fit (single-tenant, multi-tenant, and/or personal accounts).

  2. Authentication β†’ Add a platform β†’ Mobile and desktop applications β†’ add redirect URI http://localhost, and set Allow public client flows to Yes (enables the --device-code fallback).

  3. API permissions β†’ Add a permission β†’ Microsoft Graph β†’ Delegated permissions β†’ add the scopes for the servers you use (then Grant admin consent if your tenant requires it):

    ServerDelegated scopes
    CalendarCalendars.ReadWrite
    ContactsContacts.ReadWrite
    OneDriveFiles.ReadWrite.All
    OutlookMail.ReadWrite, Mail.Send
    SharePointSites.ReadWrite.All

    All servers also use User.Read. (offline_access is requested automatically for refresh.)

  4. Copy the Application (client) ID.

2. Sign in (one time per machine)

Set MICROSOFT_CLIENT_ID, then run the server's login command. A browser opens; after you consent, the token is cached under ~/.config/microsoft-mcp/:

server.ts
export MICROSOFT_CLIENT_ID=<your-client-id>

npx -y ms-calendar-mcp login           # opens the browser
npx -y ms-calendar-mcp login --device-code   # headless: shows a code to enter

From then on the server refreshes tokens automatically. Use a non-default tenant with MICROSOFT_TENANT_ID (default common).

Advanced: supply your own token

To bypass the built-in flow, supply a pre-acquired Graph token directly:

  • stdio: set MICROSOFT_ACCESS_TOKEN (takes precedence over the cached sign-in). Good for quick tests β€” mint one with az account get-access-token --resource https://graph.microsoft.com --query accessToken -o tsv.
  • HTTP: send Authorization: Bearer <token> on each POST /mcp request. Each request is stateless with its own token, so callers never share credentials β€” this is the model for hosted/remote deployments, which handle their own auth.

Running

stdio (e.g. Claude Desktop)

Each server is published to npm and runnable with npx β€” no clone or build. Sign in once first (npx -y ms-calendar-mcp login, see Authentication), then:

jsonc
// claude_desktop_config.json
{
  "mcpServers": {
    "microsoft-calendar": {
      "command": "npx",
      "args": ["-y", "ms-calendar-mcp"],
      "env": { "MICROSOFT_CLIENT_ID": "<your-client-id>" }
    }
  }
}

Or point at a local build instead of npm:

JSON Config
{
  "command": "node",
  "args": ["/abs/path/microsoft-mcp/apps/calendar/dist/index.js"],
  "env": { "MICROSOFT_CLIENT_ID": "<your-client-id>" }
}

During development you can skip the build and run the TypeScript directly:

bash
MICROSOFT_ACCESS_TOKEN=<token> pnpm --filter ms-calendar-mcp dev

Streamable HTTP

bash
# build first, then:
PORT=3000 node apps/calendar/dist/index.js --http
# or, in dev:
pnpm --filter ms-calendar-mcp dev -- --http --port 3000

The server exposes POST /mcp (the MCP endpoint) and GET /healthz. Point any Streamable-HTTP MCP client at http://localhost:3000/mcp with an Authorization: Bearer header.

Transport selection

Resolved in this order: --stdio / --http flag β†’ MCP_TRANSPORT=stdio|http β†’ default stdio. HTTP port: --port <n> β†’ PORT β†’ 3000.

Environment variables

VariableUsed byDescription
MICROSOFT_CLIENT_IDstdioEntra ID app (client) ID for sign-in. Required for the login flow.
MICROSOFT_TENANT_IDstdioTenant for sign-in: common (default), organizations, consumers, or a tenant ID.
MICROSOFT_ACCESS_TOKENstdioPre-acquired Graph token; overrides the cached sign-in when set.
MICROSOFT_MCP_CACHE_DIRstdioOverride the token-cache directory (default ~/.config/microsoft-mcp).
MCP_TRANSPORTbothstdio (default) or http.
PORThttpListen port (default 3000).
MCP_HTTP_BODY_LIMIThttpMax request body size (default 50mb) for base64 uploads.
MCP_DEBUGbothAny non-empty value enables debug logs (to stderr).

Related MCP Servers

View all in Communication View all alternatives
  • Mcp logoMcp

    Email for AI agents: inboxes, send/reply/forward, search, threads, webhooks β€” 21 SentFromAI tools.

    πŸ’¬ Communication0 views
    Compare vs Mcp β†’
  • Mcp logoMcp

    Email for AI agents: inboxes, send/reply/forward, search, threads, webhooks β€” 21 SentVia tools.

    πŸ’¬ Communication0 views
    Compare vs Mcp β†’
  • A
    Agent Email

    Local email connectivity for AI agents β€” read, draft, send, and organize Outlook mail via MCP

    πŸ’¬ Communication0 views
    Compare vs Agent Email β†’
  • M
    MCP Emails

    Email for AI agents: read, search, send, organize, and schedule across your inboxes.

    πŸ’¬ Communication0 views
    Compare vs MCP Emails β†’

Frequently Asked Questions about Microsoft Outlook Mcp

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "microsoft-outlook-mcp": { "command": "npx", "args": ["-y", "microsoft-outlook-mcp"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewMicrosoft Outlook Mcp AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/microsoft-outlook-mcp?style=directory)](https://allmcps.com/mcp/microsoft-outlook-mcp)
HTML Embed
<a href="https://allmcps.com/mcp/microsoft-outlook-mcp"><img src="https://allmcps.com/api/badge/microsoft-outlook-mcp?style=directory" alt="Microsoft Outlook Mcp on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’¬Communication
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
0/4 checks healthy over the last 7h
Views1
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedMoxie Docs MCP logo

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’¬ Communication β†’Best MCP servers for Slack & Communication β†’Alternatives to Microsoft Outlook Mcp β†’Install in Claude DesktopInstall in CursorInstall in VS Code