oracle h for VS Code
io.github.tponscr-debug/oracle-h
Human approval gate for AI agents. Critical actions approved or rejected by a human via Telegram.
client:VS Code
transport:stdio
runtime:npm
Install oracle h in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "oracle-signature-key",
"description": "ORACLE_SIGNATURE_KEY",
"password": true
},
{
"type": "promptString",
"id": "oracle-base-url",
"description": "ORACLE_BASE_URL",
"password": true
}
],
"servers": {
"oracle-h": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"oracle-h-mcp"
],
"env": {
"ORACLE_SIGNATURE_KEY": "${input:oracle-signature-key}",
"ORACLE_BASE_URL": "${input:oracle-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs