Skip to content
VS Code

djd agent score for VS Code

io.github.jacobsd32-cpu/djd-agent-score

Reputation scoring for AI agent wallets on Base. Trust scores, fraud checks, x402.

client:VS Code transport:stdio runtime:npm

Install djd agent score in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "djd-base-url",
      "description": "DJD_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "djd-timeout-ms",
      "description": "DJD_TIMEOUT_MS",
      "password": true
    }
  ],
  "servers": {
    "djd-agent-score": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "djd-agent-score-mcp"
      ],
      "env": {
        "DJD_BASE_URL": "${input:djd-base-url}",
        "DJD_TIMEOUT_MS": "${input:djd-timeout-ms}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

djd agent score in other clients