Skip to main content
Glama

mcp-outlook

A small MCP server for personal Outlook/Hotmail/Live accounts, using the Microsoft Graph API directly. The official Outlook MCP server only supports work/school (Azure AD) accounts, this one is for everyone else.

Tools: list_emails, search_emails, read_email, delete_email (requires explicit confirmation).

1. Register an Azure app (one-time setup)

  1. Go to https://portal.azure.comAzure Active DirectoryApp registrationsNew registration.

  2. Name it anything, e.g. "Personal Outlook MCP".

  3. Under "Supported account types", choose "Personal Microsoft accounts only".

  4. Leave "Redirect URI" blank.

  5. After creation, copy the Application (client) ID from the app overview page.

  6. Go to Authentication → scroll to "Advanced settings" → set "Allow public client flows" to Yes, then save.

  7. Go to API permissionsAdd a permissionMicrosoft GraphDelegated permissions → add Mail.Read, Mail.ReadWrite, offline_access.

Related MCP server: simple-email-mcp

2. Configure

npm install
cp config.example.json config.json

Edit config.json and paste in your client ID:

{ "clientId": "your-client-id-here" }

3. Run

npm start

On first run, the terminal prints a code and a URL (https://microsoft.com/devicelogin). Open the URL on any device, enter the code, and sign in with your personal Microsoft account. A token-cache.json file is created afterward so you won't need to log in again until the refresh token expires.

4. Connect it to an MCP client

Point your MCP client (e.g. Claude Desktop) at this server by adding it to its config, using the full path to src/index.js:

{
  "mcpServers": {
    "outlook": {
      "command": "node",
      "args": ["C:/xampp/htdocs/mcp-outlook-js/src/index.js"]
    }
  }
}

Notes

  • config.json and token-cache.json hold secrets and are gitignored, never commit them.

  • delete_email moves the message to Deleted Items (like a normal Outlook delete), and only runs if called with confirm: true.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

No tool schema history has been recorded yet.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    B
    maintenance
    Enables users to manage email accounts via IMAP/SMTP, including reading, searching, sending emails with attachments and calendar invites, all through natural language interactions with MCP-compatible clients.
    1
    4
    MIT
  • F
    license
    Not graded
    quality
    C
    maintenance
    Enables to manage your Outlook mailbox via Microsoft Graph (write access) with delegated permissions, providing MCP tools to create, modify, and send emails, folders, categories, rules, and automatic replies.
    -
  • F
    license
    A
    quality
    B
    maintenance
    An MCP server that enables reading and managing Microsoft 365 / Outlook emails through Microsoft Graph API, allowing users to list, search, send, draft, and authenticate using device code flow.
    17
    -

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/miguelowsky-js/mcp-outlook'

If you have feedback or need assistance with the MCP directory API, please join our Discord server