Claude Email Connector
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Claude Email Connectorpreview an email to John about the project deadline extension"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Claude Email Connector (MCP Server)
A stateless remote MCP server that lets Claude
send email from a Microsoft mailbox via Microsoft Graph /me/sendMail.
Microsoft Entra is the OAuth authorization server. When a user connects this connector in Claude, Claude runs OAuth against Entra and sends the resulting delegated Graph access token as a bearer token on every tool call. This server stores no tokens and has no refresh logic — it relays the bearer token straight to Graph.
Tools
preview_email— formats a draft for review. Sends nothing.send_email— sends via the authenticated user's mailbox, but only ifconfirmed: true. Two separate tools by design (no auto-send).get_email_count— total/unread count for a folder (inboxdefault; useallfor the whole mailbox). Read-only.list_recent_emails— most recent messages in a folder (subject, sender, date, read state, preview). Read-only.search_emails— search the mailbox by keyword/sender. Read-only.
Required Graph permissions (delegated)
Mail.Send—preview_email/send_emailMail.Read—get_email_count/list_recent_emails/search_emails
Add these under the Entra app registration → API permissions, and reconnect the connector in Claude so the new scopes are consented.
Related MCP server: Outlook MCP Server
Endpoints
GET /.well-known/oauth-protected-resource— OAuth Protected Resource Metadata (RFC 9728). Points Claude at this server as the auth server.GET /.well-known/oauth-authorization-server(and/openid-configuration) — OAuth Authorization Server Metadata (RFC 8414). Advertises the proxy endpoints.GET /authorize/POST /token— OAuth proxy to Microsoft Entra.POST /mcp— MCP Streamable HTTP endpoint (stateless). RequiresAuthorization: Bearer <token>; returns401+WWW-Authenticateotherwise.
Why the OAuth proxy?
Claude (like all MCP clients) includes the RFC 8707 resource parameter in the
OAuth authorize/token requests. Entra's v2.0 endpoint rejects resource outright
(AADSTS901002 / AADSTS9010010). So this server advertises itself as the
authorization server, strips the resource parameter, and forwards the
requests to Entra. It remains stateless — /authorize is a 302 redirect and
/token is a transparent form forward; no tokens or secrets are stored.
Run locally
npm install
# set PUBLIC_URL to your public HTTPS URL, then:
node server.jsDeploy (free tier)
Push this repo to your host (Render / Railway / Fly.io / etc.).
Set environment variables on the host:
PUBLIC_URL= the app's public HTTPS URL, e.g.https://your-app.onrender.com(no trailing slash).PORTis usually injected by the host automatically; the server honors it.
Start command:
node server.jsVerify
https://<your-app>/.well-known/oauth-protected-resourcereturns raw JSON.
Connect in Claude
claude.ai → Settings → Connectors → Add custom connector:
URL:
https://<your-app>/mcpAdvanced settings: paste your Entra Application (client) ID and client secret value. These live in Claude only — never in this server.
Security
Client ID/secret are never stored in this server or repo. .env is
gitignored. The server only ever relays the per-request bearer token to Graph.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/MAK-esoft/claude-outlook-connector'
If you have feedback or need assistance with the MCP directory API, please join our Discord server