Skip to content
VS Code

vibesharing for VS Code

io.github.erova/vibesharing

Deploy prototypes and collect team feedback from Claude Code, Cursor, or any MCP client.

client:VS Code transport:stdio runtime:npm

Install vibesharing in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "vibesharing-token",
      "description": "VIBESHARING_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "vibesharing": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@vibesharingapp/mcp-server"
      ],
      "env": {
        "VIBESHARING_TOKEN": "${input:vibesharing-token}"
      }
    }
  }
}

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

vibesharing in other clients