Outlook Mailbox Tidier for VS Code
io.github.ma2no4413/outlook-mcp
Tidy a large Outlook / Hotmail mailbox. Folder subtree moves, bulk ops with dry run, never sends.
client:VS Code
transport:stdio
runtime:oci
Install Outlook Mailbox Tidier in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "outlook-client-id",
"description": "OUTLOOK_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "outlook-token-cache",
"description": "OUTLOOK_TOKEN_CACHE",
"password": true
},
{
"type": "promptString",
"id": "outlook-tenant",
"description": "OUTLOOK_TENANT",
"password": true
},
{
"type": "promptString",
"id": "outlook-readonly",
"description": "OUTLOOK_READONLY",
"password": true
}
],
"servers": {
"outlook-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/ma2no4413/outlook-mcp:0.2.7"
],
"env": {
"OUTLOOK_CLIENT_ID": "${input:outlook-client-id}",
"OUTLOOK_TOKEN_CACHE": "${input:outlook-token-cache}",
"OUTLOOK_TENANT": "${input:outlook-tenant}",
"OUTLOOK_READONLY": "${input:outlook-readonly}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs