Skip to content
VS Code

Akeyless Agentic Runtime Authority for VS Code

io.github.akeyless-community/akeyless-rta

Secretless database and cloud access via Akeyless RTA. Credentials never enter the model.

client:VS Code transport:stdio runtime:npm

Install Akeyless Agentic Runtime Authority in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "akeyless-gateway-url",
      "description": "AKEYLESS_GATEWAY_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "akeyless-access-type",
      "description": "AKEYLESS_ACCESS_TYPE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "akeyless-access-id",
      "description": "AKEYLESS_ACCESS_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "akeyless-access-key",
      "description": "AKEYLESS_ACCESS_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "akeyless-agent-id",
      "description": "AKEYLESS_AGENT_ID",
      "password": true
    }
  ],
  "servers": {
    "akeyless-rta": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@akeyless-community/devin-connector"
      ],
      "env": {
        "AKEYLESS_GATEWAY_URL": "${input:akeyless-gateway-url}",
        "AKEYLESS_ACCESS_TYPE": "${input:akeyless-access-type}",
        "AKEYLESS_ACCESS_ID": "${input:akeyless-access-id}",
        "AKEYLESS_ACCESS_KEY": "${input:akeyless-access-key}",
        "AKEYLESS_AGENT_ID": "${input:akeyless-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

Akeyless Agentic Runtime Authority in other clients