Skip to content
VS Code

TimeZest for VS Code

io.github.wyre-ai/timezest-mcp

MCP server for TimeZest — appointment scheduling, agents, appointment types, and resources for MSPs.

client:VS Code transport:stdio runtime:oci

Install TimeZest in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "timezest-api-token",
      "description": "TIMEZEST_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-transport",
      "description": "MCP_TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "auth-mode",
      "description": "AUTH_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "timezest-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wyre-ai/timezest-mcp:v3.0.1"
      ],
      "env": {
        "TIMEZEST_API_TOKEN": "${input:timezest-api-token}",
        "MCP_TRANSPORT": "${input:mcp-transport}",
        "AUTH_MODE": "${input:auth-mode}",
        "LOG_LEVEL": "${input:log-level}"
      }
    }
  }
}

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

TimeZest in other clients