Skip to content
VS Code

perplexity comet mcp for VS Code

io.github.rapiercraft/perplexity-comet-mcp

Bridge Claude Code with Perplexity Comet for autonomous browsing and tab management

client:VS Code transport:stdio runtime:npm

Install perplexity comet mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "comet-path",
      "description": "COMET_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "comet-port",
      "description": "COMET_PORT",
      "password": true
    }
  ],
  "servers": {
    "perplexity-comet-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "perplexity-comet-mcp"
      ],
      "env": {
        "COMET_PATH": "${input:comet-path}",
        "COMET_PORT": "${input:comet-port}"
      }
    }
  }
}

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

perplexity comet mcp in other clients