Skip to content
VS Code

mova flat runner for VS Code

io.github.mova-compact/mova-flat-runner

Governed AI workflows with human approval gates and audit trails for Claude and MCP clients.

client:VS Code transport:stdio runtime:npm

Install mova flat runner in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mova-api-key",
      "description": "MOVA_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "llm-key",
      "description": "LLM_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "llm-model",
      "description": "LLM_MODEL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mova-api-url",
      "description": "MOVA_API_URL",
      "password": true
    }
  ],
  "servers": {
    "mova-flat-runner": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mova-mcp"
      ],
      "env": {
        "MOVA_API_KEY": "${input:mova-api-key}",
        "LLM_KEY": "${input:llm-key}",
        "LLM_MODEL": "${input:llm-model}",
        "MOVA_API_URL": "${input:mova-api-url}"
      }
    }
  }
}

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

mova flat runner in other clients