laver mcp for VS Code
io.github.developyn/laver-mcp
Kanban boards, sprints, tickets and a team wiki, with versioned writes for concurrent agents.
client:VS Code
transport:stdio
runtime:npm
Install laver mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "laver-api-key",
"description": "LAVER_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "laver-api-key-file",
"description": "LAVER_API_KEY_FILE",
"password": true
},
{
"type": "promptString",
"id": "laver-api-url",
"description": "LAVER_API_URL",
"password": true
}
],
"servers": {
"laver-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@laver/mcp"
],
"env": {
"LAVER_API_KEY": "${input:laver-api-key}",
"LAVER_API_KEY_FILE": "${input:laver-api-key-file}",
"LAVER_API_URL": "${input:laver-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs