joLink for VS Code
io.github.l1ch404/jolink-runtime
A lightweight Java IDE for AI agents: incremental builds, fast tests, HotSwap and live debugging.
client:VS Code
transport:stdio
runtime:pypi
Install joLink in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "jolink-download-mirror",
"description": "JOLINK_DOWNLOAD_MIRROR",
"password": true
},
{
"type": "promptString",
"id": "jolink-jdt-gc-after-build",
"description": "JOLINK_JDT_GC_AFTER_BUILD",
"password": true
}
],
"servers": {
"jolink-runtime": {
"type": "stdio",
"command": "uvx",
"args": [
"jolink-runtime"
],
"env": {
"JOLINK_DOWNLOAD_MIRROR": "${input:jolink-download-mirror}",
"JOLINK_JDT_GC_AFTER_BUILD": "${input:jolink-jdt-gc-after-build}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs