Skip to content
VS Code

OWA Exchange MCP Server for VS Code

io.github.nhype/owa-exchange-mcp

MCP server for Microsoft Exchange / OWA — email, calendar, directory, availability

client:VS Code transport:stdio runtime:pypi

Install OWA Exchange MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "exchange-owa-url",
      "description": "EXCHANGE_OWA_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "exchange-cookie-file",
      "description": "EXCHANGE_COOKIE_FILE",
      "password": true
    }
  ],
  "servers": {
    "owa-exchange-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "exchange-mcp-server"
      ],
      "env": {
        "EXCHANGE_OWA_URL": "${input:exchange-owa-url}",
        "EXCHANGE_COOKIE_FILE": "${input:exchange-cookie-file}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

OWA Exchange MCP Server in other clients