Skip to content
VS Code

Impri for VS Code

io.github.sekera-radim/impri

Impri MCP server — human-in-the-loop approval inbox for AI agents

client:VS Code transport:stdio runtime:npm

Install Impri in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "impri-api-key",
      "description": "IMPRI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "impri-base-url",
      "description": "IMPRI_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "impri": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@impri/mcp"
      ],
      "env": {
        "IMPRI_API_KEY": "${input:impri-api-key}",
        "IMPRI_BASE_URL": "${input:impri-base-url}"
      }
    }
  }
}

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

Impri in other clients