Skip to content
VS Code

outflow mcp for VS Code

io.github.laurells/outflow-mcp

MCP server exposing an Outflow workspace's live architecture graph as context for AI coding agents

client:VS Code transport:stdio runtime:npm

Install outflow mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "outflow-base-url",
      "description": "OUTFLOW_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "outflow-api-key",
      "description": "OUTFLOW_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "outflow-workspace-id",
      "description": "OUTFLOW_WORKSPACE_ID",
      "password": true
    }
  ],
  "servers": {
    "outflow-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "outflow-mcp"
      ],
      "env": {
        "OUTFLOW_BASE_URL": "${input:outflow-base-url}",
        "OUTFLOW_API_KEY": "${input:outflow-api-key}",
        "OUTFLOW_WORKSPACE_ID": "${input:outflow-workspace-id}"
      }
    }
  }
}

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

outflow mcp in other clients