Credda Trust for VS Code
io.github.credda-io/credda-trust
Check a counterparty's verifiable Credda trust record; verify or present signed credentials.
client:VS Code
transport:stdio
runtime:npm
Install Credda Trust in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "credda-api-key",
"description": "CREDDA_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "credda-user-id",
"description": "CREDDA_USER_ID",
"password": true
},
{
"type": "promptString",
"id": "credda-api-base",
"description": "CREDDA_API_BASE",
"password": true
}
],
"servers": {
"credda-trust": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@credda/mcp-server"
],
"env": {
"CREDDA_API_KEY": "${input:credda-api-key}",
"CREDDA_USER_ID": "${input:credda-user-id}",
"CREDDA_API_BASE": "${input:credda-api-base}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs