oxcode for VS Code
io.github.snowmead/oxcode
PageRank-curated code intelligence for coding agents over an indexed source repository.
client:VS Code
transport:stdio
runtime:npm
Install oxcode in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "oxcode-no-auto-update",
"description": "OXCODE_NO_AUTO_UPDATE",
"password": true
},
{
"type": "promptString",
"id": "github-token",
"description": "GITHUB_TOKEN",
"password": true
}
],
"servers": {
"oxcode": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@snowmead/oxcode-mcp"
],
"env": {
"OXCODE_NO_AUTO_UPDATE": "${input:oxcode-no-auto-update}",
"GITHUB_TOKEN": "${input:github-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs