Skip to content
VS Code

tend mcp for VS Code

io.github.nries1/tend-mcp

Unofficial MCP server for Tend Dental appointment booking. Not affiliated with Tend.

client:VS Code transport:stdio runtime:npm

Install tend mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "tend-email",
      "description": "TEND_EMAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tend-password",
      "description": "TEND_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tend-refresh-token",
      "description": "TEND_REFRESH_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "tend-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "tend-mcp"
      ],
      "env": {
        "TEND_EMAIL": "${input:tend-email}",
        "TEND_PASSWORD": "${input:tend-password}",
        "TEND_REFRESH_TOKEN": "${input:tend-refresh-token}"
      }
    }
  }
}

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

tend mcp in other clients