Skip to content
VS Code

Nora for VS Code

io.github.solomon2773/nora

Operate self-hosted OpenClaw and Hermes agent fleets on Docker or Kubernetes from MCP clients.

client:VS Code transport:stdio runtime:npm

Install Nora in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "nora-api-url",
      "description": "NORA_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nora-api-key",
      "description": "NORA_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nora-mcp-allow-destructive",
      "description": "NORA_MCP_ALLOW_DESTRUCTIVE",
      "password": true
    }
  ],
  "servers": {
    "nora": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@noraai/mcp-server"
      ],
      "env": {
        "NORA_API_URL": "${input:nora-api-url}",
        "NORA_API_KEY": "${input:nora-api-key}",
        "NORA_MCP_ALLOW_DESTRUCTIVE": "${input:nora-mcp-allow-destructive}"
      }
    }
  }
}

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

Nora in other clients