Complete Microsoft Graph API integration for Claude Code CLI with 45 powerful Office 365 tools
Seamlessly integrate your Office 365 account with Claude Code CLI for intelligent email management, calendar operations, file handling, and more. Built using the official Model Context Protocol (MCP) SDK.
- π§ Email Management - 16 tools for reading, searching, organizing, and sending emails
- π Calendar Operations - 9 tools for managing events and schedules
- π OneDrive Files - 8 tools for file and folder management
- π₯ Contacts - 4 tools for contact management
- π¬ Microsoft Teams - 5 tools for team collaboration
- β Tasks & To-Do - 4 tools for task management
- π Secure - Environment variable configuration, no hardcoded credentials
- β‘ Fast - Built on official MCP SDK for optimal performance
Total: 45 Production-Ready Tools
- Requirements
- Installation
- Azure Configuration
- Claude Code CLI Setup
- Usage
- Available Tools
- Testing
- Security
- Troubleshooting
- Contributing
- License
- Node.js 18.0.0 or higher
- Claude Code CLI installed and configured
- Microsoft 365 Account (Office 365)
- Azure AD Application with appropriate permissions
- Admin Consent for your Azure AD tenant
git clone https://github.com/eesb99/office365-mcp-server.git
cd office365-mcp-servernpm installRequired packages:
@modelcontextprotocol/sdk- Official MCP SDK@azure/msal-node- Microsoft Authentication Library@microsoft/microsoft-graph-client- Microsoft Graph API clientzod- Schema validation
Copy the example configuration:
cp .env.example .envEdit .env with your Azure credentials (see Azure Configuration below):
AZURE_CLIENT_ID=your-client-id-here
AZURE_AUTHORITY=https://login.microsoftonline.com/your-tenant-id-here
AZURE_CLIENT_SECRET=your-client-secret-here
OFFICE365_USER_EMAIL=your-email@yourdomain.com.env file to Git!
- Go to Azure Portal
- Navigate to Azure Active Directory β App registrations
- Click + New registration
- Configure:
- Name:
Office 365 MCP Server(or your preferred name) - Supported account types:
Accounts in this organizational directory only - Redirect URI: Leave blank
- Name:
- Click Register
After registration, note these values:
- Application (client) ID - Use for
AZURE_CLIENT_ID - Directory (tenant) ID - Use in
AZURE_AUTHORITYURL
- In your app registration, go to Certificates & secrets
- Click + New client secret
- Add description:
MCP Server Secret - Set expiry:
90 days(recommended, or choose your preference) - Click Add
β οΈ IMPORTANT: Copy the Value immediately (shown only once!)- Use this for
AZURE_CLIENT_SECRET
-
In your app registration, go to API permissions
-
Click + Add a permission β Microsoft Graph β Application permissions
-
Add these permissions:
Required Permissions (Minimum - 4 tools):
User.Read.AllMail.ReadCalendars.ReadFiles.Read.All
Full Feature Set (All 45 tools):
Mail.ReadWrite- Email managementMail.Send- Send emailsMailboxSettings.ReadWrite- Mailbox configurationCalendars.ReadWrite- Calendar operationsFiles.ReadWrite.All- File managementContacts.ReadWrite- Contact managementTeam.ReadBasic.All- Teams accessChannel.ReadBasic.All- Channel informationChannelMessage.Send- Send channel messagesChannelMessage.Read.All- Read channel messagesChat.ReadWrite- Chat managementTasks.ReadWrite- Task management
-
Click Add permissions
- Click β Grant admin consent for [Your Organization]
- Click Yes to confirm
- Wait for all permissions to show β Granted status
Note: Admin consent is required for Application permissions. Contact your Microsoft 365 administrator if you don't have sufficient privileges.
For detailed instructions, see AZURE_PERMISSIONS_SETUP.md.
Add this MCP server to your Claude Code configuration:
Location: ~/.claude.json
{
"mcpServers": {
"office365": {
"type": "stdio",
"command": "node",
"args": ["/absolute/path/to/office365-mcp-server/office365-sdk.js"],
"env": {
"AZURE_CLIENT_ID": "your-client-id-here",
"AZURE_CLIENT_SECRET": "your-client-secret-here",
"AZURE_AUTHORITY": "https://login.microsoftonline.com/your-tenant-id-here",
"OFFICE365_USER_EMAIL": "your-email@yourdomain.com"
}
}
}
}Important:
- Replace
/absolute/path/to/office365-mcp-server/with the actual path - Use absolute paths, not relative paths
- Add your actual Azure credentials to the
envsection
- Restart Claude Code CLI
- In a new conversation, type:
list office 365 tools - You should see 45 available tools
Troubleshooting: If tools don't appear, check:
- Path to
office365-sdk.jsis absolute and correct - All environment variables are set in
~/.claude.json - Node.js 18+ is installed:
node --version - Dependencies are installed:
npm install
Once configured in Claude Code CLI, you can use natural language to interact with Office 365:
Email:
"Show me my last 10 emails"
"Search for emails from jeff@example.com about Q4 budget"
"Send an email to team@company.com with subject 'Meeting Notes'"
"What emails are in my Sent Items folder?"
Calendar:
"What's on my calendar this week?"
"Create a meeting tomorrow at 2pm for 1 hour"
"Show all events in the next 30 days"
Files:
"List files in my OneDrive root folder"
"Search for files containing 'proposal'"
"Show me PDF files modified this month"
Contacts:
"List all my contacts"
"Find contact information for John Smith"
Teams:
"List all my Teams"
"Show channels in the Marketing team"
"Get recent messages from the General channel"
Tasks:
"Show my task lists"
"What tasks are incomplete?"
"Create a task in my To-Do list"
| Tool | Description |
|---|---|
get_recent_emails |
Get recent emails from inbox |
search_emails |
Search emails with query |
get_email_by_id |
Get specific email details |
send_email |
Send an email |
reply_to_email |
Reply to an email |
forward_email |
Forward an email |
list_mail_folders |
List all mail folders |
get_folder_emails |
Get emails from specific folder |
search_in_folder |
Search within specific folder |
move_email |
Move email to folder |
delete_email |
Delete an email |
mark_as_read |
Mark email as read |
mark_as_unread |
Mark email as unread |
get_email_attachments |
List email attachments |
download_attachment |
Download attachment |
create_mail_folder |
Create new folder |
| Tool | Description |
|---|---|
get_calendar_events |
Get upcoming calendar events |
get_event_by_id |
Get specific event details |
create_calendar_event |
Create new calendar event |
update_calendar_event |
Update existing event |
delete_calendar_event |
Delete an event |
list_calendars |
List all calendars |
get_calendar_view |
Get events in date range |
find_meeting_times |
Find available meeting times |
accept_event |
Accept meeting invitation |
| Tool | Description |
|---|---|
list_drive_items |
List files in folder |
get_file_by_id |
Get file details |
search_drive |
Search for files |
download_file |
Download file content |
upload_file |
Upload new file |
create_folder |
Create new folder |
delete_file |
Delete file or folder |
move_file |
Move file to folder |
| Tool | Description |
|---|---|
list_contacts |
List all contacts |
get_contact_by_id |
Get specific contact |
create_contact |
Create new contact |
search_contacts |
Search contacts |
| Tool | Description |
|---|---|
list_teams |
List all teams |
list_channels |
List channels in team |
get_channel_messages |
Get channel messages |
send_channel_message |
Send message to channel |
list_chats |
List recent chats |
| Tool | Description |
|---|---|
list_todo_lists |
List all task lists |
get_list_tasks |
Get tasks from list |
create_task |
Create new task |
update_task |
Update existing task |
For complete tool documentation, see OFFICE365_TOOLS.md
Simply use the natural language commands in Claude Code after setup.
Test the server independently:
# Test basic authentication
node tests/simple-test.js
# Test MCP server protocol
node tests/simple-mcp-server.jsNote: Standalone testing requires credentials in .env file.
β
Environment Variables: All credentials stored in environment variables
β
No Hardcoded Secrets: No credentials in source code
β
Git Protection: .gitignore prevents credential commits
β
Validation: Startup validation ensures all required variables are set
β
Admin Consent: Application permissions require admin approval
- Application Permissions: Server-to-service authentication (no user prompts)
- Scoped Access: Limited to configured user account
- Audit Logging: Use Azure AD audit logs to monitor access
- Secret Rotation: Rotate client secrets every 90 days (recommended)
- SECURITY.md - Security policy and responsible disclosure
- SECURITY_SCAN_REPORT.md - Vulnerability analysis
- FINAL_SECURITY_AUDIT.md - Pre-publication audit
.env files or expose credentials in code!
Check:
- Path in
~/.claude.jsonis absolute (not relative) - All environment variables are set in
~/.claude.jsonenvsection - Claude Code CLI has been restarted after configuration
- Run
node office365-sdk.js- should start without errors
401 Unauthorized:
- Verify
AZURE_CLIENT_SECRETis correct (use Value, not Secret ID) - Check secret hasn't expired in Azure Portal
- Ensure
AZURE_CLIENT_IDandAZURE_AUTHORITYare correct
403 Forbidden:
- Admin consent not granted - check Azure Portal API permissions
- Wait 5-10 minutes after granting consent for propagation
- Verify permissions show "β Granted" status
Error: "Insufficient privileges to complete the operation"
Solution:
- Go to Azure Portal β App registrations β Your app
- API permissions β Check all required permissions are added
- Click "Grant admin consent" again
- Verify all show "β Granted" status
Server fails to start:
- Check Node.js version:
node --version(need 18+) - Reinstall dependencies:
rm -rf node_modules && npm install - Verify all environment variables are set
- Check for typos in
~/.claude.json(validate JSON syntax)
For more troubleshooting, see AZURE_PERMISSIONS_SETUP.md
Contributions are welcome! This is an open-source project.
- Fork the repository
- Create a feature branch:
git checkout -b feature/amazing-feature - Make your changes
- Test thoroughly with Claude Code CLI
- Commit your changes:
git commit -m 'Add amazing feature' - Push to your fork:
git push origin feature/amazing-feature - Open a Pull Request
- Follow existing code style (2-space indentation for JavaScript)
- Add tests for new features
- Update documentation for new tools
- No hardcoded credentials in code
- Use environment variables for configuration
Found a bug or have a suggestion? Open an issue
Include:
- Claude Code CLI version
- Node.js version
- Operating system
- Error messages (remove any credentials!)
- Steps to reproduce
This project is licensed under the MIT License - see the LICENSE file for details.
MIT License
Copyright (c) 2025 eesb99
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
- Built with Model Context Protocol (MCP) SDK
- Powered by Microsoft Graph API
- Designed for Claude Code CLI
- Created with assistance from Claude Code
- GitHub: @eesb99
- Email: eesb99@gmail.com
- Issues: GitHub Issues
- Version: 2.0.0 (Security Hardened)
- Total Tools: 45
- Code Quality: Production Ready
- Testing: Tested with Claude Code CLI
- Security Audit: Passed (see FINAL_SECURITY_AUDIT.md)
- Last Updated: 2025-10-29
If you find this project useful, please consider giving it a star on GitHub! β
Made with β€οΈ for the Claude Code community