Skip to content
VS Code

shield kya for VS Code

io.github.the-pixel-boys/shield-kya

KYA MCP gate: evaluate, ingest, request approval. Sole PEP is Shield.

client:VS Code transport:stdio runtime:npm

Install shield kya in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "kya-base-url",
      "description": "KYA_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "kya-api-key",
      "description": "KYA_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "kya-host",
      "description": "KYA_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "kya-agent-id",
      "description": "KYA_AGENT_ID",
      "password": true
    }
  ],
  "servers": {
    "shield-kya": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@shield-agent/kya"
      ],
      "env": {
        "KYA_BASE_URL": "${input:kya-base-url}",
        "KYA_API_KEY": "${input:kya-api-key}",
        "KYA_HOST": "${input:kya-host}",
        "KYA_AGENT_ID": "${input:kya-agent-id}"
      }
    }
  }
}

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

shield kya in other clients