Skip to content
VS Code

CloudArch Codeflow for VS Code

ru.cloud-arch/cloudarch-codeflow

Turn a TypeScript codebase into a live animated call-flow diagram on CloudArch.

client:VS Code transport:stdio runtime:npm

Install CloudArch Codeflow in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cloudarch-api-key",
      "description": "CLOUDARCH_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cloudarch-api-url",
      "description": "CLOUDARCH_API_URL",
      "password": true
    }
  ],
  "servers": {
    "cloudarch-codeflow": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@cloud-arch/mcp-codeflow"
      ],
      "env": {
        "CLOUDARCH_API_KEY": "${input:cloudarch-api-key}",
        "CLOUDARCH_API_URL": "${input:cloudarch-api-url}"
      }
    }
  }
}

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

CloudArch Codeflow in other clients