Skip to content
VS Code

FronyBoard for VS Code

io.github.cafelatte1/fronyboard

Project tracker for AI agents: roadmap, periods, tasks and a validation gate, in one SQLite file

client:VS Code transport:stdio runtime:pypi

Install FronyBoard in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "aira-data-dir",
      "description": "AIRA_DATA_DIR",
      "password": true
    }
  ],
  "servers": {
    "fronyboard": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "fronyboard"
      ],
      "env": {
        "AIRA_DATA_DIR": "${input:aira-data-dir}"
      }
    }
  }
}

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

FronyBoard in other clients