
Company News
AWS Security Hub Adds Socket for Supply Chain Security
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.
@mindstone/mcp-server-microsoft-mail
Advanced tools
Microsoft 365 Outlook mail via Graph: read, search, send, reply, forward, draft, move, delete.
Microsoft 365 Outlook Mail MCP server — list, search, read, send, reply, forward, draft, move, and delete email via the Microsoft Graph API.
Cohort-style Microsoft 365 mail MCP. Host owns the OAuth flow, this server reads per-account tokens off disk, and each tool fails closed with a structured auth_required envelope so the host can drive reauth.
MS_CLIENT_ID)STATUS.json@mindstone/mcp-server-microsoft-sharedWhen we ported this in May 2026, Microsoft's own Graph MCP lineup did not yet ship a stand-alone Outlook Mail server, and the community options at the time each ran their own browser-callback server during OAuth — which our host application already does, with credentials it has already negotiated for the rest of the cohort. We pulled the bundled connector out of MindstoneRebel as a 1:1 port so the same five-connector Microsoft 365 cohort (mail, calendar, files, teams, SharePoint) shares a single OAuth surface, a single shared-library package for token persistence, request timeouts, and the structured auth_required envelope the host already knows how to recover from. This connector owns the cohort's authentication tool (authenticate_microsoft_account); the other four connectors reuse the credentials it negotiates.
"List my five most recent unread emails from Alice and reply to the latest one with 'thanks, will read tonight'."
Tools the host calls:
search_emails — from:alice@example.com isRead:false, top 5.reply_to_email — sends a reply on the top-result message ID with the supplied body.Response (trimmed):
{
"matches": [
{
"id": "AAMkAD...",
"subject": "Q3 planning",
"from": "alice@example.com",
"receivedDateTime": "2026-05-19T09:14:11Z"
}
],
"reply": {
"id": "AAMkAD...",
"isDraft": false
}
}
${MS_CONFIG_DIR}/credentials/${sanitised-email}.token.json and an ${MS_CONFIG_DIR}/accounts.json index. This server reads those files; it does not initiate OAuth itself.After clicking the button, your host will prompt you to fill: MS_CLIENT_ID, MS_CONFIG_DIR, MS_MCP_PACKAGE_ID, MICROSOFT_REQUEST_TIMEOUT_MS.
{
"mcpServers": {
"Microsoft 365 Mail": {
"command": "npx",
"args": [
"-y",
"@mindstone/mcp-server-microsoft-mail"
],
"env": {
"MS_CLIENT_ID": "",
"MS_CONFIG_DIR": "",
"MS_MCP_PACKAGE_ID": "Microsoft365Mail",
"MICROSOFT_REQUEST_TIMEOUT_MS": "60000"
}
}
}
}
cd <path-to-repo>/connectors/microsoft-mail
npm install
npm run build
npx -y @mindstone/mcp-server-microsoft-mail
node dist/index.js
This server runs alongside a host application that owns the Microsoft 365 OAuth flow. The host writes credentials to disk; this server reads them.
| Name | Description |
|---|---|
MS_CLIENT_ID | Microsoft Entra (Azure AD) application client ID. |
MS_CONFIG_DIR | Path to the per-user Microsoft config directory (credentials/, accounts.json). |
| Name | Description | Default |
|---|---|---|
MS_ACCOUNT_EMAIL | Account email when running in multi-account per-instance mode. | First account in accounts.json. |
MS_MCP_PACKAGE_ID | Logical package ID surfaced in error responses. | Microsoft365Mail |
MICROSOFT_REQUEST_TIMEOUT_MS | Override the upstream Microsoft Graph request timeout (max 300000 ms). | 60000 |
MICROSOFT_DISABLE_REFRESH | Set to 1 to disable token refresh on this surface. Tools fail closed with the structured auth_required response so the host can drive reauth. Cloud surfaces set this to 1. | unset |
{
"mcpServers": {
"Microsoft365Mail": {
"command": "npx",
"args": ["-y", "@mindstone/mcp-server-microsoft-mail"],
"env": {
"MS_CLIENT_ID": "your-entra-application-client-id",
"MS_CONFIG_DIR": "/absolute/path/to/microsoft-config"
}
}
}
}
Until the host has written ${MS_CONFIG_DIR}/credentials/<account>.token.json and ${MS_CONFIG_DIR}/accounts.json, every tool call returns the structured auth_required response (the host's MCP service recognises this shape and dispatches to its registered Microsoft 365 OAuth orchestrator).
{
"mcpServers": {
"Microsoft365Mail": {
"command": "node",
"args": ["<path-to-repo>/connectors/microsoft-mail/dist/index.js"],
"env": {
"MS_CLIENT_ID": "your-entra-application-client-id",
"MS_CONFIG_DIR": "/absolute/path/to/microsoft-config"
}
}
}
}
| Tool | Description |
|---|---|
authenticate_microsoft_account | Emit the structured auth_required handoff so the host runs the Microsoft 365 OAuth flow. |
list_emails | List emails in a folder, ordered by most recent. |
get_email | Read a single email by message ID. |
send_email | Send a new email message. |
compose_email | Open an editable draft in an interactive compose view; nothing is sent until the user clicks Send. |
search_emails | Search emails using Microsoft Search syntax. |
reply_to_email | Reply (or reply-all) to an existing email. |
forward_email | Forward an email to additional recipients. |
delete_email | Move an email to Deleted Items, or hard-delete it. |
list_folders | List mail folders. |
move_email | Move an email to a different folder. |
create_reply_draft | Save a draft reply to an existing email. |
create_draft | Save a new standalone draft email. |
0600; this server reads them via the cohort-shared library, which fails closed on malformed files.MICROSOFT_DISABLE_REFRESH=1 is the default on cloud surfaces so the desktop session remains the sole refresh-token authority and avoids racing for single-use refresh tokens.ok:true wrapper to match the bundled successResult shape; manual validation/business errors return isError:true with a { ok:false, error, action_required, next_step } payload so the host's recovery layer can act on them..options({signal}) plus a Promise.race wrapper for defence-in-depth.FSL-1.1-MIT — Functional Source License, Version 1.1, with MIT future licence. Free for non-competing use; relicenses to MIT on the converter date in LICENSE.
FAQs
Microsoft 365 Outlook mail via Graph: read, search, send, reply, forward, draft, move, delete.
We found that @mindstone/mcp-server-microsoft-mail demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.

Research
/Security News
Popular npm packages keyv and cacheable compromised.

Security News
A misconfiguration gave three Anthropic models internet access, and one, believing it was in a simulation, shipped a credential-stealing package to PyPI.