mcp microsoft todo for VS Code
io.github.mag-cie/mcp-microsoft-todo
MCP server for Microsoft To Do via Microsoft Graph. MSAL device code flow, no client secret needed.
client:VS Code
transport:stdio
runtime:npm
Install mcp microsoft todo in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "ms-client-id",
"description": "MS_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "ms-tenant",
"description": "MS_TENANT",
"password": true
}
],
"servers": {
"mcp-microsoft-todo": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@mag-cie/mcp-microsoft-todo"
],
"env": {
"MS_CLIENT_ID": "${input:ms-client-id}",
"MS_TENANT": "${input:ms-tenant}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs