Outlook MCP Server

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.

Category
访问服务器

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

  1. Clone and setup:

    git clone <repository-url>
    cd outlook-mcp
    uv install -e .
    
  2. Configure environment variables: Create a .env file 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
    
  3. 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, attachments
  • create_draft_email - Create draft emails for later editing
  • send_draft_email - Send existing draft emails
  • get_draft_emails - Retrieve all draft emails
  • update_draft_email - Modify existing draft emails
  • delete_draft_email - Remove draft emails

Contact Management (5 tools)

  • create_contact - Add new contacts with full details
  • get_all_contacts - Retrieve all contacts
  • get_contact_details - Get specific contact information
  • update_contact - Modify existing contact details
  • delete_contact - Remove contacts

Calendar Management (9 tools)

  • get_all_calendars - List all calendars
  • get_calendar_details - Get specific calendar information
  • create_calendar - Create new calendars with custom colors
  • update_calendar - Modify calendar properties
  • delete_calendar - Remove calendars
  • get_all_events - Retrieve events from calendars
  • get_event_details - Get specific event information
  • create_event - Schedule new events with attendees
  • delete_event - Remove calendar events

Folder Management (6 tools)

  • get_all_folders - List all mail folders
  • get_folder_details - Get specific folder information
  • create_folder - Create new mail folders (with nesting)
  • update_folder - Rename folders
  • delete_folder - Remove folders
  • get_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:

  1. No direct credential storage - All auth handled by Nango
  2. Token management - Automatic token refresh and management
  3. Secure communication - HTTPS-only API communication
  4. Environment-based config - Sensitive data in environment variables

🐛 Troubleshooting

Common Issues

  1. "Missing environment variables"

    • Ensure all 4 Nango variables are set in your Claude configuration
    • Check .env file exists and is properly formatted for local development
  2. "Connection failed"

    • Verify Nango integration is active
    • Check internet connectivity
    • Validate Nango credentials
  3. "Tool execution failed"

    • Check Microsoft Graph API permissions
    • Verify Outlook account has necessary access
    • Review error messages in Claude Desktop logs
  4. "uv command not found"

    • Install uv: curl -LsSf https://astral.sh/uv/install.sh | sh
    • Or via pip: pip 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

  1. Install in development mode:

    uv install -e .
    
  2. Run tests:

    uv run pytest tests/
    
  3. Check tool functionality:

    uv run python -c "from outlook_mcp.tools.email import get_draft_emails; print(get_draft_emails())"
    

Creating Custom Tools

  1. Add your tool function to the appropriate module in tools/
  2. Update the server's tool list in server.py
  3. Add proper input schema validation
  4. 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

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature/new-tool
  3. Make your changes with tests
  4. Submit a pull request

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

🔗 Related Links

📞 Support

For issues and questions:

  1. Check the troubleshooting section above
  2. Review the GitHub issues
  3. Create a new issue with detailed information

Built with ❤️ for seamless Outlook integration via MCP

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选