Skip to content
VS Code

skylight mcp for VS Code

io.github.chrischall/skylight-mcp

Skylight Calendar for Claude — family events, chores, and rewards.

client:VS Code transport:stdio runtime:npm

Install skylight mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "skylight-refresh-token",
      "description": "SKYLIGHT_REFRESH_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "skylight-email",
      "description": "SKYLIGHT_EMAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "skylight-password",
      "description": "SKYLIGHT_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "skylight-frame-id",
      "description": "SKYLIGHT_FRAME_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "skylight-name",
      "description": "SKYLIGHT_NAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "skylight-token-cache",
      "description": "SKYLIGHT_TOKEN_CACHE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "skylight-token-file",
      "description": "SKYLIGHT_TOKEN_FILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "skylight-base-url",
      "description": "SKYLIGHT_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "skylight-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "skylight-mcp"
      ],
      "env": {
        "SKYLIGHT_REFRESH_TOKEN": "${input:skylight-refresh-token}",
        "SKYLIGHT_EMAIL": "${input:skylight-email}",
        "SKYLIGHT_PASSWORD": "${input:skylight-password}",
        "SKYLIGHT_FRAME_ID": "${input:skylight-frame-id}",
        "SKYLIGHT_NAME": "${input:skylight-name}",
        "SKYLIGHT_TOKEN_CACHE": "${input:skylight-token-cache}",
        "SKYLIGHT_TOKEN_FILE": "${input:skylight-token-file}",
        "SKYLIGHT_BASE_URL": "${input:skylight-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

skylight mcp in other clients