Office 365 Email
БесплатноНе проверенEnables AI agents to send emails via Microsoft 365/Office 365 using app-only authentication and Microsoft Graph API, supporting HTML content, attachments, and C
Описание
Enables AI agents to send emails via Microsoft 365/Office 365 using app-only authentication and Microsoft Graph API, supporting HTML content, attachments, and CC/BCC.
README
An MCP server that lets an AI agent send email through Microsoft 365 / Office 365 using the OAuth2 client-credentials (app-only) flow and the Microsoft Graph API.
No interactive login at runtime — register an app once, grant it Mail.Send, and the server sends mail headlessly. Ideal for automation, notifications, and agent workflows.
Features
office365_send_email— send plain-text or HTML email, with CC/BCC and local file attachments.office365_test_connection— verify your OAuth2 config by acquiring a token (sends nothing).- App-only auth (no user sign-in), tokens cached and refreshed automatically by MSAL.
- Clear, actionable error messages for the common auth/permission/mailbox mistakes.
How it works
agent → MCP tool → MSAL (client credentials) → Entra ID → access token
→ POST https://graph.microsoft.com/v1.0/users/{sender}/sendMail
Prerequisites
- Python 3.10+
- A Microsoft 365 tenant where you can register an app (or an admin who can).
- A licensed mailbox to send from.
1. Register the app in Microsoft Entra ID
- Go to Entra admin center → Identity → Applications → App registrations → New registration.
- Name it (e.g.
office365-email-mcp), leave redirect URI blank, Register. - Copy the Application (client) ID and Directory (tenant) ID from the Overview page.
- Certificates & secrets → New client secret → copy the secret Value (shown once).
- API permissions → Add a permission → Microsoft Graph → Application permissions →
Mail.Send→ Add. - Click Grant admin consent for your tenant. (Requires an admin; the green check must appear.)
Scope it down (recommended).
Mail.Send(Application) lets the app send as any mailbox in the tenant. Restrict it to specific mailboxes with an Application Access Policy in Exchange Online:New-ApplicationAccessPolicy -AppId <CLIENT_ID> ` -PolicyScopeGroupId [email protected] ` -AccessRight RestrictAccess ` -Description "Restrict office365-email-mcp to the mcp-senders group"
2. Install
# from a clone of this repo
pip install .
# or run without installing, using uv
uvx --from . office365-email-mcp
3. Configure
Set these environment variables (see .env.example):
| Variable | Required | Description |
|---|---|---|
O365_TENANT_ID |
yes | Directory (tenant) ID |
O365_CLIENT_ID |
yes | Application (client) ID |
O365_CLIENT_SECRET |
yes | Client secret value |
O365_SENDER |
no | Default sender mailbox (overridable per call) |
4. Add to your MCP client
Claude Desktop / Claude Code (claude_desktop_config.json or .mcp.json):
{
"mcpServers": {
"office365-email": {
"command": "office365-email-mcp",
"env": {
"O365_TENANT_ID": "00000000-0000-0000-0000-000000000000",
"O365_CLIENT_ID": "00000000-0000-0000-0000-000000000000",
"O365_CLIENT_SECRET": "your-secret-value",
"O365_SENDER": "[email protected]"
}
}
}
}
If you didn't pip install, use "command": "uvx" with "args": ["--from", "/path/to/repo", "office365-email-mcp"].
Tools
office365_send_email
| Parameter | Type | Required | Notes |
|---|---|---|---|
to |
string[] | yes | Primary recipients |
subject |
string | yes | |
body |
string | yes | Plain text or HTML |
is_html |
bool | no | Treat body as HTML (default false) |
cc / bcc |
string[] | no | |
sender |
string | no | Overrides O365_SENDER |
attachments |
string[] | no | Local file paths, < ~3 MB total |
save_to_sent_items |
bool | no | Default true |
office365_test_connection
No parameters. Acquires a token and reports success/failure — run this first when troubleshooting.
Troubleshooting
| Error | Fix |
|---|---|
401 Authentication failed |
Client secret expired or wrong tenant/client ID. |
403 Permission denied |
Missing Mail.Send Application permission or admin consent not granted. |
404 Sender mailbox not found |
sender isn't a real, licensed mailbox in the tenant. |
Application Access Policy blocks send |
The sender isn't in the allowed group from your access policy. |
Security notes
- The client secret is a credential — keep it out of source control (
.envis gitignored). Rotate it periodically. - Prefer an Application Access Policy so the app can only send as intended mailboxes.
- Attachments over ~3 MB exceed Graph's single-request
sendMaillimit; share a link instead.
License
Установка Office 365 Email
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/cybrlou/office365-email-mcpFAQ
Office 365 Email MCP бесплатный?
Да, Office 365 Email MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Office 365 Email?
Нет, Office 365 Email работает без API-ключей и переменных окружения.
Office 365 Email — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Office 365 Email в Claude Desktop, Claude Code или Cursor?
Открой Office 365 Email на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Gmail
Read, send and search emails from Claude
автор: GoogleSlack
Send, search and summarize Slack messages
автор: SlackRunbear
No-code MCP client for team chat platforms, such as Slack, Microsoft Teams, and Discord.
Discord Server
A community discord server dedicated to MCP by [Frank Fiegel](https://github.com/punkpeye)
Compare Office 365 Email with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории communication
