mcp server for VS Code
io.github.srbryant86/mcp-server
Sign AI output for EU AI Act + FRE 902 compliance, verify content authenticity provenance
client:VS Code
transport:stdio
runtime:npm
Install mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "certnode-api-key",
"description": "CERTNODE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "certnode-api-url",
"description": "CERTNODE_API_URL",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@certnode/mcp-server"
],
"env": {
"CERTNODE_API_KEY": "${input:certnode-api-key}",
"CERTNODE_API_URL": "${input:certnode-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs