gorev for VS Code
io.github.msenol/gorev
Task management system for AI assistants with MCP protocol, templates, and bilingual support (TR/EN)
client:VS Code
transport:stdio
runtime:npm
Install gorev in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "gorev-lang",
"description": "GOREV_LANG",
"password": true
},
{
"type": "promptString",
"id": "gorev-data-dir",
"description": "GOREV_DATA_DIR",
"password": true
}
],
"servers": {
"gorev": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@mehmetsenol/gorev-mcp-server"
],
"env": {
"GOREV_LANG": "${input:gorev-lang}",
"GOREV_DATA_DIR": "${input:gorev-data-dir}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs