MarkLayer for VS Code
io.github.thevrus/marklayer
Work visual annotations on a live webpage: watch, acknowledge, resolve, reply, or leave your own.
client:VS Code
transport:stdio
runtime:npm
Install MarkLayer in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "marklayer-room",
"description": "MARKLAYER_ROOM",
"password": true
},
{
"type": "promptString",
"id": "marklayer-api-base",
"description": "MARKLAYER_API_BASE",
"password": true
},
{
"type": "promptString",
"id": "marklayer-agent",
"description": "MARKLAYER_AGENT",
"password": true
}
],
"servers": {
"marklayer": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"marklayer-mcp"
],
"env": {
"MARKLAYER_ROOM": "${input:marklayer-room}",
"MARKLAYER_API_BASE": "${input:marklayer-api-base}",
"MARKLAYER_AGENT": "${input:marklayer-agent}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs