AgentTrust — Identity & Trust for A2A Agents for VS Code
ai.agenttrust/mcp-server
Identity, trust, and A2A orchestration for autonomous AI agents. Official A2A partner.
client:VS Code
transport:stdio
runtime:npm
Install AgentTrust — Identity & Trust for A2A Agents in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "agenttrust-api-key",
"description": "AGENTTRUST_API_KEY",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@agenttrust/mcp-server"
],
"env": {
"AGENTTRUST_API_KEY": "${input:agenttrust-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