AgentHubAgentHub

Outlook

MCP ServerMCP Registry官方收录

io.github.mcp-z/mcp-outlook · v1.0.13

Outlook integration with OAuth, message search, batch operations, and calendar management

概览

Outlook 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio、streamable-http 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "mcp-outlook": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp-z/mcp-outlook"
      ],
      "env": {
        "MS_CLIENT_ID": "<MS_CLIENT_ID>",
        "MS_TENANT_ID": "<MS_TENANT_ID>"
      }
    }
  }
}

环境变量

MS_CLIENT_ID必填

Microsoft OAuth client ID (required for OAuth authentication modes)

MS_TENANT_ID必填

Microsoft tenant ID (required for OAuth authentication)

MS_CLIENT_SECRET可选secret

Microsoft OAuth client secret (optional for public clients)

AUTH_MODE可选

Authentication mode

HEADLESS可选

Disable browser auto-open, return auth URL instead (true/false)

REDIRECT_URI可选

OAuth redirect URI (optional, default: ephemeral loopback)

RESOURCE_STORE_URI可选

Resource store URI for CSV export files (file://)

PORT可选

HTTP server port (overrides --port)

BASE_URL可选

Base URL for HTTP transport (used for OAuth/DCR endpoints and file links)

LOG_LEVEL可选

Logging level

MS_CLIENT_ID必填

Microsoft OAuth client ID (required for OAuth authentication modes)

MS_TENANT_ID必填

Microsoft tenant ID (required for OAuth authentication)

MS_CLIENT_SECRET可选secret

Microsoft OAuth client secret (optional for public clients)

AUTH_MODE可选

Authentication mode

HEADLESS可选

Disable browser auto-open, return auth URL instead (true/false)

REDIRECT_URI可选

OAuth redirect URI (optional, default: ephemeral loopback)

DCR_MODE可选

Dynamic Client Registration mode

DCR_VERIFY_URL可选

External verification endpoint URL (required for external DCR mode)

DCR_STORE_URI可选

DCR client storage URI (for self-hosted DCR mode)

RESOURCE_STORE_URI可选

Resource store URI for CSV export files (file://)

PORT可选

HTTP server port (overrides --port)

BASE_URL可选

Base URL for HTTP transport (used for OAuth/DCR endpoints and file links)

LOG_LEVEL可选

Logging level

相关资源

统一 Manifest

{
  "id": "io.github.mcp-z/mcp-outlook",
  "type": "mcp-server",
  "version": "1.0.13",
  "displayName": "Outlook",
  "description": "Outlook integration with OAuth, message search, batch operations, and calendar management",
  "homepage": "https://github.com/mcp-z/mcp-outlook#readme",
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@mcp-z/mcp-outlook",
        "version": "1.0.13",
        "runtimeHint": "npx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "MS_CLIENT_ID",
            "description": "Microsoft OAuth client ID (required for OAuth authentication modes)",
            "isRequired": true
          },
          {
            "name": "MS_TENANT_ID",
            "description": "Microsoft tenant ID (required for OAuth authentication)",
            "isRequired": true
          },
          {
            "name": "MS_CLIENT_SECRET",
            "description": "Microsoft OAuth client secret (optional for public clients)",
            "isSecret": true
          },
          {
            "name": "AUTH_MODE",
            "description": "Authentication mode"
          },
          {
            "name": "HEADLESS",
            "description": "Disable browser auto-open, return auth URL instead (true/false)"
          },
          {
            "name": "REDIRECT_URI",
            "description": "OAuth redirect URI (optional, default: ephemeral loopback)"
          },
          {
            "name": "RESOURCE_STORE_URI",
            "description": "Resource store URI for CSV export files (file://)"
          },
          {
            "name": "PORT",
            "description": "HTTP server port (overrides --port)"
          },
          {
            "name": "BASE_URL",
            "description": "Base URL for HTTP transport (used for OAuth/DCR endpoints and file links)"
          },
          {
            "name": "LOG_LEVEL",
            "description": "Logging level"
          }
        ]
      },
      {
        "registryType": "npm",
        "identifier": "@mcp-z/mcp-outlook",
        "version": "1.0.13",
        "runtimeHint": "npx",
        "transport": "streamable-http",
        "environmentVariables": [
          {
            "name": "MS_CLIENT_ID",
            "description": "Microsoft OAuth client ID (required for OAuth authentication modes)",
            "isRequired": true
          },
          {
            "name": "MS_TENANT_ID",
            "description": "Microsoft tenant ID (required for OAuth authentication)",
            "isRequired": true
          },
          {
            "name": "MS_CLIENT_SECRET",
            "description": "Microsoft OAuth client secret (optional for public clients)",
            "isSecret": true
          },
          {
            "name": "AUTH_MODE",
            "description": "Authentication mode"
          },
          {
            "name": "HEADLESS",
            "description": "Disable browser auto-open, return auth URL instead (true/false)"
          },
          {
            "name": "REDIRECT_URI",
            "description": "OAuth redirect URI (optional, default: ephemeral loopback)"
          },
          {
            "name": "DCR_MODE",
            "description": "Dynamic Client Registration mode"
          },
          {
            "name": "DCR_VERIFY_URL",
            "description": "External verification endpoint URL (required for external DCR mode)"
          },
          {
            "name": "DCR_STORE_URI",
            "description": "DCR client storage URI (for self-hosted DCR mode)"
          },
          {
            "name": "RESOURCE_STORE_URI",
            "description": "Resource store URI for CSV export files (file://)"
          },
          {
            "name": "PORT",
            "description": "HTTP server port (overrides --port)"
          },
          {
            "name": "BASE_URL",
            "description": "Base URL for HTTP transport (used for OAuth/DCR endpoints and file links)"
          },
          {
            "name": "LOG_LEVEL",
            "description": "Logging level"
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.mcp-z/mcp-outlook",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.mcp-z%2Fmcp-outlook/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Outlook — MCP Server 安装与配置 · AgentHub