← All plugins
outlook-mcp
v0.1.0Control Microsoft Outlook desktop on Windows (mail, calendar, tasks, notes) via the Win32 COM API
Claude Code1 MCP serverstdio
by Adam KopelmanMIT0updated 3 weeks ago
Source
git clone https://github.com/adamkopelman/outlook-mcpClone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.
Layout
outlook-mcp/
├── .claude-plugin/plugin.json└── .mcp.json
MCP servers1
outlookstdio
- command
- python
- args
- -m outlook_mcp
Manifests1
.claude-plugin/plugin.json
{
"name": "outlook-mcp",
"displayName": "Outlook MCP Server",
"version": "0.1.0",
"description": "Control Microsoft Outlook desktop on Windows (mail, calendar, tasks, notes) via the Win32 COM API",
"author": {
"name": "Adam Kopelman",
"email": "adamkopelman2@gmail.com"
},
"homepage": "https://github.com/adamkopelman/outlook-mcp",
"repository": "https://github.com/adamkopelman/outlook-mcp",
"license": "MIT",
"keywords": [
"outlook",
"mcp",
"windows",
"com",
"pywin32",
"email",
"calendar"
],
"mcpServers": {
"outlook": {
"command": "python",
"args": [
"-m",
"outlook_mcp"
]
}
}
}