Skip to content
VS Code

Denik for VS Code

me.denik/denik

Book appointments, check availability, list services and create payment links for a Denik business.

client:VS Code transport:stdio runtime:npm

Install Denik in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "denik-api-key",
      "description": "DENIK_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "denik-base-url",
      "description": "DENIK_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "denik-timeout-ms",
      "description": "DENIK_TIMEOUT_MS",
      "password": true
    }
  ],
  "servers": {
    "denik": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@denik.me/mcp"
      ],
      "env": {
        "DENIK_API_KEY": "${input:denik-api-key}",
        "DENIK_BASE_URL": "${input:denik-base-url}",
        "DENIK_TIMEOUT_MS": "${input:denik-timeout-ms}"
      }
    }
  }
}

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

Denik in other clients