Skip to content
VS Code

agenthook for VS Code

io.github.avivk5498/agenthook

Character-consistent UGC video, images, and captions from any MCP client, via the AgentHook API.

client:VS Code transport:stdio runtime:npm

Install agenthook in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "agenthook-api-key",
      "description": "AGENTHOOK_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "agenthook-api-url",
      "description": "AGENTHOOK_API_URL",
      "password": true
    }
  ],
  "servers": {
    "agenthook": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@getagenthook/mcp"
      ],
      "env": {
        "AGENTHOOK_API_KEY": "${input:agenthook-api-key}",
        "AGENTHOOK_API_URL": "${input:agenthook-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

agenthook in other clients