Microsoft Outlook MCP server for Windows using COM interface - Direct integration with local Outlook application. Supports Windows and WSL.
Project description
Outlook MCP Server - Windows COM Edition
A Model Context Protocol (MCP) server that provides AI assistants with direct access to Microsoft Outlook on Windows through COM (Component Object Model) interface. This server enables seamless integration with emails, calendar events, and contacts without requiring Azure AD credentials or Microsoft Graph API setup.
Features
๐ Direct Outlook Integration
- Connects directly to local Outlook application using Windows COM interface
- No Azure AD registration or Graph API credentials required
- Works with existing Outlook installations and profiles
๐ง Email Management
- Get emails from any folder (Inbox, Sent Items, Drafts, etc.)
- Send emails with support for CC, BCC, and rich formatting
- Search and filter emails with pagination support
- Read email details including sender, recipients, attachments
๐ Calendar Operations
- View calendar events with date range filtering
- Create new appointments with attendees and locations
- Support for recurring events and all-day events
- Access multiple calendars and calendar folders
๐ฅ Contact Management
- Browse contacts from Outlook address book
- Create new contacts with full contact information
- Access contact details including multiple email addresses and phone numbers
- Company and job title information
๐ง MCP Tools
get-emails- Retrieve emails from specified folderssend-email- Send emails with full formatting supportget-calendar-events- Get upcoming calendar eventscreate-calendar-event- Create new calendar appointmentsget-contacts- Browse contact directorycreate-contact- Add new contacts
๐ MCP Prompts
summarize-emails- Generate email summariesschedule-summary- Create calendar overviewscompose-email- Assist with professional email composition
Prerequisites
Windows Requirements
- Windows OS (Windows 10/11 recommended)
- Microsoft Outlook installed and configured
- Python 3.8+ with pip or uv package manager
Platform Support
- โ Windows: Full functionality with COM interface
- โ WSL (Windows Subsystem for Linux): Full functionality with additional setup
- โ ๏ธ macOS/Linux: Limited functionality (server will start but cannot connect to Outlook)
WSL (Windows Subsystem for Linux) Support
The server works in WSL environments with proper configuration:
Requirements:
- WSL 1 or WSL 2 on Windows 10/11
- Outlook running on the Windows host
- Python 3.8+ in WSL
- pywin32 package installed in WSL
Installation in WSL:
# Install with WSL support
pip install outlook-mcp-server-windows-com[wsl]
# Or install pywin32 separately
pip install outlook-mcp-server-windows-com
pip install pywin32
Testing WSL Setup:
# Download and run the WSL test script
./test_wsl.sh
Installation
From PyPI (Recommended)
# Install from PyPI
pip install outlook-mcp-server-windows-com
# Or using UV
uv add outlook-mcp-server-windows-com
From Source
Using UV
# Clone the repository
git clone <repository-url> outlook-mcp-server-windows-com
cd outlook-mcp-server-windows-com
# Install dependencies with UV
uv sync
Using Pip
# Clone the repository
git clone <repository-url> outlook-mcp-server-windows-com
cd outlook-mcp-server-windows-com
# Create virtual environment
python -m venv venv
venv\Scripts\activate # On Windows
# source venv/bin/activate # On macOS/Linux
# Install dependencies
pip install -e .
Quickstart
Install
Claude Desktop
Add this to your Claude Desktop configuration file (%APPDATA%\Claude\claude_desktop_config.json on Windows):
For published package (recommended):
{
"mcpServers": {
"outlook-windows-com": {
"command": "outlook-mcp-server-windows-com",
"env": {}
}
}
}
For development/source installation:
{
"mcpServers": {
"outlook-windows-com": {
"command": "uv",
"args": ["--directory", "C:\\path\\to\\outlook-mcp-server-windows-com", "run", "python", "-m", "outlook_mcp_server"],
"env": {}
}
}
}
Using system Python:
{
"mcpServers": {
"outlook-windows-com": {
"command": "python",
"args": ["-m", "outlook_mcp_server"],
"env": {}
}
}
}
Usage
Running the Server
# If installed from PyPI
outlook-mcp-server-windows-com
# Or using Python module
python -m outlook_mcp_server
# From source with UV
uv run python -m outlook_mcp_server
Claude Desktop Integration
Development
Project Structure
outlook-mcp-server-windows-com/
โโโ src/
โ โโโ outlook_mcp_server/
โ โโโ __init__.py
โ โโโ server.py # Main MCP server implementation
โโโ .vscode/ # VS Code configuration
โ โโโ launch.json # Debug configurations
โ โโโ settings.json # Editor settings
โโโ pyproject.toml # Project configuration
โโโ LICENSE # MIT license
โโโ MANIFEST.in # Package distribution files
โโโ README.md # This file
โโโ test_client.py # Cross-platform test script
โโโ test_wsl.sh # WSL-specific test script
โโโ test_windows.ps1 # Windows PowerShell test script
โโโ uv.lock # Dependency lock file
Testing
# Test server functionality (all platforms)
python test_client.py
# Or test directly with UV
uv run python test_client.py
# WSL-specific comprehensive test
./test_wsl.sh # Only in WSL environment
# Test Windows COM access manually
python -c "import win32com.client; print('โ
COM available')"
Platform Detection
The server includes automatic platform detection:
import platform
if platform.system() == "Windows":
try:
import win32com.client
WINDOWS_COM_AVAILABLE = True
except ImportError:
WINDOWS_COM_AVAILABLE = False
else:
WINDOWS_COM_AVAILABLE = False
Debugging
Since MCP servers run over stdio, debugging can be challenging. For the best debugging experience, we strongly recommend using the MCP Inspector.
You can launch the MCP Inspector via npm with this command:
npx @modelcontextprotocol/inspector uv --directory /path/to/outlook-mcp-server-windows-com run python -m outlook_mcp_server
Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.
Troubleshooting
Windows Issues
"Failed to connect to Outlook"
- Ensure Outlook is running and properly configured
- Check that your Outlook profile is set up correctly
- Try restarting Outlook and the MCP server
- Run Outlook as administrator if needed
"Windows COM interface not available"
- Install pywin32:
pip install pywin32 - Restart your command prompt/terminal after installation
WSL Issues
"pywin32 not available in WSL"
# Install pywin32 in WSL
pip install pywin32
# Or install with WSL extras
pip install outlook-mcp-server-windows-com[wsl]
"Failed to connect to Outlook from WSL"
- Ensure Outlook is running on the Windows host (not in WSL)
- Try running Outlook as administrator on Windows
- Check that WSL has proper Windows integration enabled
- Verify Windows Defender/antivirus isn't blocking COM access
WSL COM Access Issues
- Some WSL configurations may block COM access
- Try running the test script:
./test_wsl.sh - Consider using WSL 2 for better Windows integration
- Ensure your WSL distribution is up to date
Testing WSL Environment
# Run comprehensive WSL test
./test_wsl.sh
# Manual test of COM access
python3 -c "import win32com.client; print('COM available')"
General Issues
"Import errors in IDE"
- Import errors for MCP libraries are normal in development
- The server will work correctly when run in the proper environment
Permission Errors
- Try running your terminal/command prompt as administrator
- Check that Outlook isn't in "safe mode"
- Verify your user has proper permissions to access Outlook
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file outlook_mcp_server_windows_com-0.1.1.tar.gz.
File metadata
- Download URL: outlook_mcp_server_windows_com-0.1.1.tar.gz
- Upload date:
- Size: 40.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27767892414caea9e434e76dd31893c461a9dbcd97d887b714a36fc9b7805922
|
|
| MD5 |
1dd2533a98418be1141079f8028efcfe
|
|
| BLAKE2b-256 |
e4bb3fc599cb06c053d80b907fb63977e0a5676871d4c072ebf17f65cf4f8e57
|
File details
Details for the file outlook_mcp_server_windows_com-0.1.1-py3-none-any.whl.
File metadata
- Download URL: outlook_mcp_server_windows_com-0.1.1-py3-none-any.whl
- Upload date:
- Size: 13.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a26064f8afe36edc347280707f7f5b65113b1e484477f15d1bc5e0542412328
|
|
| MD5 |
7c1aff76228c3e6e271dcb7d97e635e5
|
|
| BLAKE2b-256 |
980efc6437fe866f810a837d2e531b7859979f6d8a5b1ef5bc01853c6108e8f6
|