Skip to content
VS Code

fizzy for VS Code

io.github.davegomez/fizzy

MCP server for Fizzy task management

client:VS Code transport:stdio runtime:npm

Install fizzy in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "fizzy-token",
      "description": "FIZZY_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "fizzy-base-url",
      "description": "FIZZY_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "fizzy-account",
      "description": "FIZZY_ACCOUNT",
      "password": true
    }
  ],
  "servers": {
    "fizzy": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@silky/fizzy-mcp"
      ],
      "env": {
        "FIZZY_TOKEN": "${input:fizzy-token}",
        "FIZZY_BASE_URL": "${input:fizzy-base-url}",
        "FIZZY_ACCOUNT": "${input:fizzy-account}"
      }
    }
  }
}

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

fizzy in other clients