Microsoft 365 MCP
Outlook, OneDrive, Excel, Teams, and SharePoint through the Graph API
Runs as a server Claude Code connects to. It needs its own configuration, and some servers need an API key.
Install just this one
Run in your terminal — needs Node
npx archtmpl@latest --mcp ms-365-mcpFirst time? The whole install, step by step
- Open Claude Code — the terminal version or the desktop app, either one.
- In a terminal, paste the line above and press Enter. In the app, paste it into the chat and ask Claude to run it.
- Restart Claude Code. That's the whole install.
The same JSON shown on this page works in the Claude desktop app without Claude Code. Add it to the app's config file, then restart the app:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
What this mcp server does
shell
1{ 2 "name": "Microsoft 365 MCP", 3 "summary": "Outlook, OneDrive, Excel, Teams, and SharePoint through the Graph API", 4 "repo": "https://github.com/Softeria/ms-365-mcp-server", 5 "mcpServers": { 6 "ms365": { 7 "command": "npx", 8 "args": ["-y", "@softeria/ms-365-mcp-server"] 9 }10 },11 "postInstallNotes": "Sign in with your Microsoft account on first use. Teams and SharePoint need a work/school account: add --org-mode to the args. Read-only mode and tool presets are available; see the README."12}13