Skip to content
VS Code

agent infra mcp for VS Code

io.github.lulzasaur9192/agent-infra-mcp

18 tools: agent memory, API drift detection, and HMAC-signed trust receipts

client:VS Code transport:stdio runtime:npm

Install agent infra mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "agent-memory-api-key",
      "description": "AGENT_MEMORY_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "agent-drift-api-key",
      "description": "AGENT_DRIFT_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "trust-receipt-api-key",
      "description": "TRUST_RECEIPT_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "agent-infra-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@lulzasaur9192/agent-infra-mcp"
      ],
      "env": {
        "AGENT_MEMORY_API_KEY": "${input:agent-memory-api-key}",
        "AGENT_DRIFT_API_KEY": "${input:agent-drift-api-key}",
        "TRUST_RECEIPT_API_KEY": "${input:trust-receipt-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

agent infra mcp in other clients