Skip to content
VS Code

aidress for VS Code

io.github.aidress-ai/aidress

Verify, discover, and rate AI agents before transacting.

client:VS Code transport:stdio runtime:pypi

Install aidress in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "aidress-api-key",
      "description": "AIDRESS_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aidress-base-url",
      "description": "AIDRESS_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "aidress": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "aidress-mcp"
      ],
      "env": {
        "AIDRESS_API_KEY": "${input:aidress-api-key}",
        "AIDRESS_BASE_URL": "${input:aidress-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

aidress in other clients