mcp identity for VS Code
io.github.zekebuilds-lab/mcp-identity
DoI score lookup, vouch event builder, and offline schnorr verify for AI agents.
client:VS Code
transport:stdio
runtime:npm
Install mcp identity in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "oracle-url",
"description": "ORACLE_URL",
"password": true
},
{
"type": "promptString",
"id": "oracle-pubkey",
"description": "ORACLE_PUBKEY",
"password": true
}
],
"servers": {
"mcp-identity": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@powforge/mcp-identity"
],
"env": {
"ORACLE_URL": "${input:oracle-url}",
"ORACLE_PUBKEY": "${input:oracle-pubkey}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs