Skip to content
VS Code

marrow for VS Code

io.github.getmarrow/marrow

Runtime governance, proof, outcome closure, and fleet intelligence for MCP-compatible AI agents.

client:VS Code transport:stdio runtime:npm

Install marrow in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "marrow-api-key",
      "description": "MARROW_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "marrow": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@getmarrow/mcp"
      ],
      "env": {
        "MARROW_API_KEY": "${input:marrow-api-key}"
      }
    }
  }
}

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

marrow in other clients