USRCP — User Context Protocol for VS Code
io.github.frank-bot07/usrcp
Encrypted local ledger of structured user state, shared across every MCP-aware AI tool.
client:VS Code
transport:stdio
runtime:npm
Install USRCP — User Context Protocol in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "usrcp-passphrase",
"description": "USRCP_PASSPHRASE",
"password": true
}
],
"servers": {
"usrcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"usrcp"
],
"env": {
"USRCP_PASSPHRASE": "${input:usrcp-passphrase}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs