Skip to content
VS Code

ACR — Agent Composition Records for VS Code

io.github.tethralai/acr

Interaction profile registry for AI agents. Log interactions, query behavioral lenses.

client:VS Code transport:stdio runtime:npm

Install ACR — Agent Composition Records in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "acr-api-url",
      "description": "ACR_API_URL",
      "password": true
    }
  ],
  "servers": {
    "acr": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@tethral/acr-mcp"
      ],
      "env": {
        "ACR_API_URL": "${input:acr-api-url}"
      }
    }
  }
}

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

ACR — Agent Composition Records in other clients