Skip to content
VS Code

mdflow — Context OS for AI Coding Agents for VS Code

io.github.yubinbin32-ops/mdflow

Context OS for AI coding agents: task-scoped AST context, verified mutation, and rollback.

client:VS Code transport:stdio runtime:oci

Install mdflow — Context OS for AI Coding Agents in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mdflow-project-root",
      "description": "MDFLOW_PROJECT_ROOT",
      "password": true
    }
  ],
  "servers": {
    "mdflow": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/yubinbin32-ops/mdflow:0.3.7"
      ],
      "env": {
        "MDFLOW_PROJECT_ROOT": "${input:mdflow-project-root}"
      }
    }
  }
}

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

mdflow — Context OS for AI Coding Agents in other clients