korg ledger for VS Code
io.github.new1direction/korg-ledger
Verifiable cognition: prove a session ledger is tamper-evident; audit & import any agent's logs.
client:VS Code
transport:stdio
runtime:pypi
Install korg ledger in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "korg-journal-path",
"description": "KORG_JOURNAL_PATH",
"password": true
},
{
"type": "promptString",
"id": "korg-ledger-hmac-key",
"description": "KORG_LEDGER_HMAC_KEY",
"password": true
}
],
"servers": {
"korg-ledger": {
"type": "stdio",
"command": "uvx",
"args": [
"korgex"
],
"env": {
"KORG_JOURNAL_PATH": "${input:korg-journal-path}",
"KORG_LEDGER_HMAC_KEY": "${input:korg-ledger-hmac-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs