Microsoft Planner for VS Code
io.github.mspstack/mcp-planner
Microsoft Planner MCP server — plans, buckets, tasks via Microsoft Graph, ETags handled
client:VS Code
transport:stdio
runtime:npm
Install Microsoft Planner in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "ms-tenant-id",
"description": "MS_TENANT_ID",
"password": true
},
{
"type": "promptString",
"id": "ms-client-id",
"description": "MS_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "ms-client-secret",
"description": "MS_CLIENT_SECRET",
"password": true
},
{
"type": "promptString",
"id": "planner-advanced-toolset",
"description": "PLANNER_ADVANCED_TOOLSET",
"password": true
}
],
"servers": {
"mcp-planner": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mcp-planner"
],
"env": {
"MS_TENANT_ID": "${input:ms-tenant-id}",
"MS_CLIENT_ID": "${input:ms-client-id}",
"MS_CLIENT_SECRET": "${input:ms-client-secret}",
"PLANNER_ADVANCED_TOOLSET": "${input:planner-advanced-toolset}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs