Skip to content
VS Code

feedback magic for VS Code

com.feedback-magic/feedback-magic

Create Feedback Magic widgets — feedback, surveys, changelog, roadmap — from your AI editor.

client:VS Code transport:stdio runtime:npm

Install feedback magic in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "feedback-magic-token",
      "description": "FEEDBACK_MAGIC_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "feedback-magic": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "feedback-magic-mcp"
      ],
      "env": {
        "FEEDBACK_MAGIC_TOKEN": "${input:feedback-magic-token}"
      }
    }
  }
}

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

feedback magic in other clients