Skip to content
VS Code

HelpDental for VS Code

io.github.tris686/helpdental-mcp

Search 10,000+ UK dental practices, compare treatment prices, and find emergency dentists.

client:VS Code transport:stdio runtime:npm

Install HelpDental in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "supabase-url",
      "description": "SUPABASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "supabase-anon-key",
      "description": "SUPABASE_ANON_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-booking-api-key",
      "description": "MCP_BOOKING_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "helpdental-api-base",
      "description": "HELPDENTAL_API_BASE",
      "password": true
    }
  ],
  "servers": {
    "helpdental-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "helpdental-mcp"
      ],
      "env": {
        "SUPABASE_URL": "${input:supabase-url}",
        "SUPABASE_ANON_KEY": "${input:supabase-anon-key}",
        "MCP_BOOKING_API_KEY": "${input:mcp-booking-api-key}",
        "HELPDENTAL_API_BASE": "${input:helpdental-api-base}"
      }
    }
  }
}

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

HelpDental in other clients