Claude-skill-registry julien-mcp-outlook
Install Outlook MCP via win32com. Use when user needs Outlook email automation on Windows.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/julien-mcp-outlook" ~/.claude/skills/majiayu000-claude-skill-registry-julien-mcp-outlook && rm -rf "$T"
manifest:
skills/data/julien-mcp-outlook/SKILL.mdsource content
MCP Outlook Installer
This skill installs the Outlook MCP server into the current project.
Installation Procedure
When the user asks to install Outlook MCP:
- Check for existing
in the project root.mcp.json - Merge configuration - Add this server to
:mcpServers
{ "outlook": { "command": "${ONEDRIVE_MCP_PATH}/outlook-mcp-server/venv/Scripts/python.exe", "args": ["${ONEDRIVE_MCP_PATH}/outlook-mcp-server/main.py"] } }
- If
doesn't exist, create it with the full structure:.mcp.json
{ "mcpServers": { "outlook": { "command": "${ONEDRIVE_MCP_PATH}/outlook-mcp-server/venv/Scripts/python.exe", "args": ["${ONEDRIVE_MCP_PATH}/outlook-mcp-server/main.py"] } } }
Environment Variables Required
: Path to MCP servers folderONEDRIVE_MCP_PATH
Prerequisites
- Windows with Outlook installed
- Python with pywin32
Usage After Installation
Restart Claude Code to activate the MCP server.
Skill Chaining
- Input: User request to install Outlook MCP
- Output: Configured
with outlook server.mcp.json - Tools Used: Read, Edit, Write
- Chains With: Gmail MCP for multi-provider email
Troubleshooting
| Problem | Solution |
|---|---|
| pywin32 error | Run in venv |
| Outlook not found | Ensure Outlook desktop app is installed |
| Path not found | Verify ONEDRIVE_MCP_PATH environment variable |
| Permission denied | Grant Outlook access when prompted |