agentsafe for VS Code
io.github.andyscott88/agentsafe
Real-time URL trust scoring for AI agents. Blocks phishing and malicious sites.
client:VS Code
transport:stdio
runtime:npm
Install agentsafe in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "agentsafe-api-key",
"description": "AGENTSAFE_API_KEY",
"password": true
}
],
"servers": {
"agentsafe": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"agentsafe-mcp-server"
],
"env": {
"AGENTSAFE_API_KEY": "${input:agentsafe-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs