DidWork for VS Code
sh.didwork/didwork
Verify that an agent's claimed outcome actually happened, using independently gathered evidence
client:VS Code
transport:stdio
runtime:npm
Install DidWork in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "didwork-api-key",
"description": "DIDWORK_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "didwork-base-url",
"description": "DIDWORK_BASE_URL",
"password": true
}
],
"servers": {
"didwork": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@didwork/mcp"
],
"env": {
"DIDWORK_API_KEY": "${input:didwork-api-key}",
"DIDWORK_BASE_URL": "${input:didwork-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs