Skip to content
VS Code

alive analysis for VS Code

io.github.with-geun/alive-analysis

Query alive-analysis history from any AI client. Tools: list, get, search, dashboard export.

client:VS Code transport:stdio runtime:npm

Install alive analysis in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "alive-analyses-dir",
      "description": "ALIVE_ANALYSES_DIR",
      "password": true
    }
  ],
  "servers": {
    "alive-analysis": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "alive-analysis-mcp"
      ],
      "env": {
        "ALIVE_ANALYSES_DIR": "${input:alive-analyses-dir}"
      }
    }
  }
}

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

alive analysis in other clients