npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@eaglebyte/skylight-mcp

v1.1.7

Published

MCP server for Skylight Calendar API - enables agentic interactions for calendar, chores, lists, and family management

Downloads

258

Readme

Skylight MCP Server

An MCP (Model Context Protocol) server for the Skylight Calendar API. Enables AI assistants like Claude to interact with your Skylight family calendar, chores, lists, and more.

Features

  • Calendar: Query calendar events ("What's on my calendar today?")
  • Chores: View and create chores ("Add emptying dishwasher to chores")
  • Lists: View grocery and to-do lists ("What's on the grocery list?")
  • Tasks: Add items to the task box ("Add XYZ to my task list")
  • Family: View family members and devices
  • Rewards: Check reward points and available rewards

Quick Start

Installation

Option 1: npm package (Recommended)

mcp.json:

{
  "mcpServers": {
    "skylight": {
      "command": "npx",
      "args": ["@eaglebyte/skylight-mcp"],
      "env": {
        "SKYLIGHT_EMAIL": "[email protected]",
        "SKYLIGHT_PASSWORD": "your_password",
        "SKYLIGHT_FRAME_ID": "your_frame_id"
      }
    }
  }
}

Claude Code:

claude mcp add skylight npx @eaglebyte/skylight-mcp \
  -e [email protected] \
  -e SKYLIGHT_PASSWORD=your_password \
  -e SKYLIGHT_FRAME_ID=your_frame_id

Option 2: From source

git clone https://github.com/TheEagleByte/skylight-mcp.git
cd skylight-mcp && npm install && npm run build

Then use in mcp.json:

{
  "mcpServers": {
    "skylight": {
      "command": "node",
      "args": ["/path/to/skylight-mcp/dist/index.js"],
      "env": {
        "SKYLIGHT_EMAIL": "[email protected]",
        "SKYLIGHT_PASSWORD": "your_password",
        "SKYLIGHT_FRAME_ID": "your_frame_id"
      }
    }
  }
}

Instructions for AI

Copy this into your AI's custom instructions or system prompt:

You have access to the Skylight MCP server. Skylight is a smart family calendar display that shows calendars, chores, grocery lists, meals, and rewards. Use the Skylight tools to help manage family schedules and organization.

Tips:

  • Call get_family_members before assigning chores to get member names
  • Grocery items default to the main grocery list if no list specified
  • Dates accept "today", "tomorrow", day names, or YYYY-MM-DD format
  • Some tools (rewards, meals, photos) require Skylight Plus subscription

Prerequisites

  • Node.js 18+
  • A Skylight account with an active subscription
  • Your Skylight Frame ID (see Finding your Frame ID)

Authentication

The MCP server supports two authentication methods:

Option 1: Email/Password (Recommended)

Use your Skylight account credentials. The server will automatically log in and manage tokens.

[email protected]
SKYLIGHT_PASSWORD=your_password
SKYLIGHT_FRAME_ID=your_frame_id

Option 2: Manual Token (Legacy)

Capture a token from the Skylight app using a proxy tool.

SKYLIGHT_TOKEN=your_token_here
SKYLIGHT_FRAME_ID=your_frame_id
SKYLIGHT_AUTH_TYPE=bearer

Finding your Frame ID

You still need to find your frame ID (the household identifier):

  1. Use a proxy tool (Proxyman, Charles, or mitmproxy)
  2. Capture any API request from the Skylight app
  3. Look at the URL path: /api/frames/{frameId}/...
  4. Example: /api/frames/abc123/chores → frame ID is abc123

Configuration

| Variable | Required | Description | |----------|----------|-------------| | SKYLIGHT_EMAIL | Option 1 | Your Skylight account email | | SKYLIGHT_PASSWORD | Option 1 | Your Skylight account password | | SKYLIGHT_TOKEN | Option 2 | Your API token (if not using email/password) | | SKYLIGHT_AUTH_TYPE | No | bearer (default) or basic (for manual token) | | SKYLIGHT_FRAME_ID | Yes | Your household frame ID | | SKYLIGHT_TIMEZONE | No | Default timezone (default: America/New_York) |

Example .env file:

# Email/password auth (recommended)
[email protected]
SKYLIGHT_PASSWORD=your_password
SKYLIGHT_FRAME_ID=your_frame_id
SKYLIGHT_TIMEZONE=America/New_York

Available Tools

Calendar Tools

| Tool | Description | |------|-------------| | get_calendar_events | Get calendar events for a date range | | get_source_calendars | List connected calendar sources (Google, iCloud, etc.) |

Chore Tools

| Tool | Description | |------|-------------| | get_chores | Get chores with optional filters (date, assignee, status) | | create_chore | Create a new chore with optional recurrence |

List Tools

| Tool | Description | |------|-------------| | get_lists | Get all available lists | | get_list_items | Get items from a specific list |

Task Tools

| Tool | Description | |------|-------------| | create_task | Add a task to the task box |

Family Tools

| Tool | Description | |------|-------------| | get_family_members | Get family member profiles | | get_frame_info | Get household/frame information | | get_devices | List Skylight devices |

Reward Tools

| Tool | Description | |------|-------------| | get_rewards | Get available rewards | | get_reward_points | Get reward points balance |

Example Queries

Once configured, you can ask Claude things like:

  • "What's on my calendar today?"
  • "What chores do I need to do this week?"
  • "Add 'take out trash' to my chores for tomorrow"
  • "What's on the grocery list?"
  • "Add milk to my task list"
  • "Who are the family members on Skylight?"
  • "How many reward points does each person have?"

Development

# Run in development mode (with hot reload)
npm run dev

# Build
npm run build

# Run tests
npm test

# Type check
npm run typecheck

License

MIT

Disclaimer

This is an unofficial integration. The Skylight API is reverse-engineered and may change without notice. Use at your own risk.