Outlook MCP Server
Provides comprehensive integration with Microsoft Outlook for managing emails, contacts, calendars, and folders through the Microsoft Graph API. It offers 26 specialized tools to perform actions like sending emails, scheduling meetings, and organizing mail folders.
README
Outlook MCP Server
A Model Context Protocol (MCP) server for Microsoft Outlook integration that provides comprehensive email, contact, calendar, and folder management capabilities through the Microsoft Graph API.
๐ Quick Start
Prerequisites
- Python 3.8 or higher
- uv package manager
- Microsoft Graph API access via Nango
- Valid Outlook/Microsoft 365 account
Installation
-
Clone and setup:
git clone <repository-url> cd outlook-mcp uv install -e . -
Configure environment variables: Create a
.envfile or set these environment variables:NANGO_CONNECTION_ID=your_connection_id NANGO_INTEGRATION_ID=your_integration_id NANGO_BASE_URL=your_nango_base_url NANGO_SECRET_KEY=your_secret_key -
Test the server:
uv run python outlook_mcp_server.py --help
๐ง MCP Client Configuration
Claude Desktop Configuration
Add this to your Claude Desktop MCP configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%/Claude/claude_desktop_config.json on Windows):
{
"mcpServers": {
"outlook": {
"command": "uvx",
"args": [
"git+https://github.com/ampcome-mcps/outlook-mcp.git",
],
"env": {
"NANGO_CONNECTION_ID": "your_connection_id",
"NANGO_INTEGRATION_ID": "your_integration_id",
"NANGO_BASE_URL": "your_nango_base_url",
"NANGO_SECRET_KEY": "your_secret_key"
}
}
}
}
Other MCP Clients
For other MCP clients, use:
- Command:
uv - Args:
["run", "python", "outlook_mcp_server.py"] - Working Directory: Path to the outlook-mcp directory
- Transport: stdio
- Environment: Set the required Nango variables
๐ง Available Tools (26 Total)
Email Management (6 tools)
send_email- Send emails with TO/CC/BCC, HTML/text content, attachmentscreate_draft_email- Create draft emails for later editingsend_draft_email- Send existing draft emailsget_draft_emails- Retrieve all draft emailsupdate_draft_email- Modify existing draft emailsdelete_draft_email- Remove draft emails
Contact Management (5 tools)
create_contact- Add new contacts with full detailsget_all_contacts- Retrieve all contactsget_contact_details- Get specific contact informationupdate_contact- Modify existing contact detailsdelete_contact- Remove contacts
Calendar Management (9 tools)
get_all_calendars- List all calendarsget_calendar_details- Get specific calendar informationcreate_calendar- Create new calendars with custom colorsupdate_calendar- Modify calendar propertiesdelete_calendar- Remove calendarsget_all_events- Retrieve events from calendarsget_event_details- Get specific event informationcreate_event- Schedule new events with attendeesdelete_event- Remove calendar events
Folder Management (6 tools)
get_all_folders- List all mail foldersget_folder_details- Get specific folder informationcreate_folder- Create new mail folders (with nesting)update_folder- Rename foldersdelete_folder- Remove foldersget_many_folders- Batch retrieve multiple folders
๐ก Usage Examples
Send an Email
{
"tool": "send_email",
"arguments": {
"subject": "Project Update",
"content": "<h1>Hello!</h1><p>Here's the latest update...</p>",
"to_recipients": ["colleague@company.com"],
"cc_recipients": ["manager@company.com"],
"importance": "high"
}
}
Create a Contact
{
"tool": "create_contact",
"arguments": {
"given_name": "John",
"surname": "Doe",
"email_addresses": "john.doe@company.com,john@personal.com",
"company_name": "Acme Corp",
"job_title": "Software Engineer"
}
}
Schedule a Meeting
{
"tool": "create_event",
"arguments": {
"subject": "Weekly Team Meeting",
"start_datetime": "2024-01-15T10:00:00",
"end_datetime": "2024-01-15T11:00:00",
"attendees": ["team@company.com"],
"location": "Conference Room A",
"body_content": "Discussing project milestones"
}
}
๐๏ธ Project Structure
outlook-mcp/
โโโ src/outlook_mcp/
โ โโโ __init__.py
โ โโโ server.py # Main MCP server implementation
โ โโโ connection.py # Nango API connection handling
โ โโโ tools/
โ โโโ __init__.py
โ โโโ email.py # Email management tools
โ โโโ contacts.py # Contact management tools
โ โโโ calendar.py # Calendar and event tools
โ โโโ folders.py # Folder management tools
โโโ outlook_mcp_server.py # Standalone server entry point
โโโ main.py # Alternative entry point
โโโ pyproject.toml # Package configuration with uv
โโโ uv.lock # uv lockfile for reproducible builds
โโโ README.md # This documentation
โโโ .env # Environment variables (create this)
๐ Security & Authentication
This server uses Nango for secure Microsoft Graph API authentication:
- No direct credential storage - All auth handled by Nango
- Token management - Automatic token refresh and management
- Secure communication - HTTPS-only API communication
- Environment-based config - Sensitive data in environment variables
๐ Troubleshooting
Common Issues
-
"Missing environment variables"
- Ensure all 4 Nango variables are set in your Claude configuration
- Check
.envfile exists and is properly formatted for local development
-
"Connection failed"
- Verify Nango integration is active
- Check internet connectivity
- Validate Nango credentials
-
"Tool execution failed"
- Check Microsoft Graph API permissions
- Verify Outlook account has necessary access
- Review error messages in Claude Desktop logs
-
"uv command not found"
- Install uv:
curl -LsSf https://astral.sh/uv/install.sh | sh - Or via pip:
pip install uv
- Install uv:
Debug Mode
For local development, run with verbose output:
uv run python outlook_mcp_server.py 2>debug.log
Testing Connection
uv run python -c "from outlook_mcp.connection import get_access_token; print('โ
Connection successful!' if get_access_token() else 'โ Connection failed')"
๐งช Development & Testing
Local Development
-
Install in development mode:
uv install -e . -
Run tests:
uv run pytest tests/ -
Check tool functionality:
uv run python -c "from outlook_mcp.tools.email import get_draft_emails; print(get_draft_emails())"
Creating Custom Tools
- Add your tool function to the appropriate module in
tools/ - Update the server's tool list in
server.py - Add proper input schema validation
- Test with MCP client
๐ Requirements
- Python 3.8+
- uv >= 0.1.0 - Fast Python package installer and resolver
- mcp >= 1.0.0 - Model Context Protocol library
- requests >= 2.32.4 - HTTP client
- python-dotenv >= 1.1.1 - Environment variable management
๐ค Contributing
- Fork the repository
- Create a feature branch:
git checkout -b feature/new-tool - Make your changes with tests
- Submit a pull request
๐ License
This project is licensed under the MIT License - see the LICENSE file for details.
๐ Related Links
- Model Context Protocol Specification
- Microsoft Graph API Documentation
- Nango Integration Platform
- Claude Desktop MCP Configuration
- uv Package Manager
๐ Support
For issues and questions:
- Check the troubleshooting section above
- Review the GitHub issues
- Create a new issue with detailed information
Built with โค๏ธ for seamless Outlook integration via MCP
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.