Frisk for VS Code
dev.tryfrisk/frisk
Screen the counterparty of an x402 payment before an agent pays it. Runs offline by default.
client:VS Code
transport:stdio
runtime:npm
Install Frisk in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "frisk-api-key",
"description": "FRISK_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "frisk-base-url",
"description": "FRISK_BASE_URL",
"password": true
}
],
"servers": {
"frisk": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"frisk-mcp"
],
"env": {
"FRISK_API_KEY": "${input:frisk-api-key}",
"FRISK_BASE_URL": "${input:frisk-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