Skip to content
VS Code

guardrly mcp for VS Code

io.github.fishcoco-code/guardrly-mcp

Non-invasive AI Agent monitoring — audit every API call to Shopify, Meta Ads, and more

client:VS Code transport:stdio runtime:pypi

Install guardrly mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "guardrly-api-key",
      "description": "GUARDRLY_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "guardrly-api-url",
      "description": "GUARDRLY_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "hmac-secret",
      "description": "HMAC_SECRET",
      "password": true
    }
  ],
  "servers": {
    "guardrly-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "guardrly"
      ],
      "env": {
        "GUARDRLY_API_KEY": "${input:guardrly-api-key}",
        "GUARDRLY_API_URL": "${input:guardrly-api-url}",
        "HMAC_SECRET": "${input:hmac-secret}"
      }
    }
  }
}

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

guardrly mcp in other clients