Skip to content
VS Code

walkerOS Flow for VS Code

io.walkeros/flow

Build, validate, simulate, and deploy walkerOS event pipelines

client:VS Code transport:stdio runtime:npm

Install walkerOS Flow in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "walkeros-token",
      "description": "WALKEROS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "walkeros-project-id",
      "description": "WALKEROS_PROJECT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "walkeros-app-url",
      "description": "WALKEROS_APP_URL",
      "password": true
    }
  ],
  "servers": {
    "flow": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@walkeros/mcp"
      ],
      "env": {
        "WALKEROS_TOKEN": "${input:walkeros-token}",
        "WALKEROS_PROJECT_ID": "${input:walkeros-project-id}",
        "WALKEROS_APP_URL": "${input:walkeros-app-url}"
      }
    }
  }
}

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

walkerOS Flow in other clients