Shiplight for VS Code
ai.shiplight/shiplight
An MCP server that provides browser automation
client:VS Code
transport:stdio
runtime:npm
Install Shiplight in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "pwdebug",
"description": "PWDEBUG",
"password": true
}
],
"servers": {
"shiplight": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@shiplightai/mcp"
],
"env": {
"PWDEBUG": "${input:pwdebug}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs