Skip to content
VS Code

powerplan for VS Code

io.github.cynacons/powerplan

MCP server that makes PLAN.md the operational backbone of agentic development

client:VS Code transport:stdio runtime:pypi

Install powerplan in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "pythonunbuffered",
      "description": "PYTHONUNBUFFERED",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pythonioencoding",
      "description": "PYTHONIOENCODING",
      "password": true
    }
  ],
  "servers": {
    "powerplan": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "powerplan-mcp"
      ],
      "env": {
        "PYTHONUNBUFFERED": "${input:pythonunbuffered}",
        "PYTHONIOENCODING": "${input:pythonioencoding}"
      }
    }
  }
}

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

powerplan in other clients