AgentTrust for VS Code
io.github.raditotev/agent-trust
MCP Server for Agent Reputation & Trust Scoring
client:VS Code
transport:stdio
runtime:pypi
Install AgentTrust in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "database-url",
"description": "DATABASE_URL",
"password": true
},
{
"type": "promptString",
"id": "redis-url",
"description": "REDIS_URL",
"password": true
},
{
"type": "promptString",
"id": "signing-key-path",
"description": "SIGNING_KEY_PATH",
"password": true
},
{
"type": "promptString",
"id": "auth-provider",
"description": "AUTH_PROVIDER",
"password": true
},
{
"type": "promptString",
"id": "agentauth-access-token",
"description": "AGENTAUTH_ACCESS_TOKEN",
"password": true
}
],
"servers": {
"agent-trust": {
"type": "stdio",
"command": "uvx",
"args": [
"agent-trust-mcp"
],
"env": {
"DATABASE_URL": "${input:database-url}",
"REDIS_URL": "${input:redis-url}",
"SIGNING_KEY_PATH": "${input:signing-key-path}",
"AUTH_PROVIDER": "${input:auth-provider}",
"AGENTAUTH_ACCESS_TOKEN": "${input:agentauth-access-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs