Back to Discover

skylight-mcp

connector

chrischall

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

View on GitHub
0 starsSynced Aug 10, 2026

Install to Claude Code

/plugin marketplace add chrischall/skylight-mcp

README

skylight-mcp

CI npm license

MCP server for Skylight Calendar — 111 tools across calendar events (read+write), shared lists (read+write), chores and rewards (read+write), task-box items (read+write), meals (read+write), AI auto-creation (meal-plan + activity-idea generators with draft review/approve), messages and albums (read+write), photo/video upload, and frame/device/account settings + calendar + member management (read+write, incl. preset and custom-photo avatars).

Every API request carries the skylight-api-version: 2026-05-01 header (matching the official mobile app); without it some features 422 with "API version does not support …".

Auth

The server uses a headless email+password OAuth2 authorization-code flow — no SSO, no 2FA, no browser extension required. Credentials are always SKYLIGHT_EMAIL + SKYLIGHT_PASSWORD.

On first tool call, the server performs four steps against https://app.ourskylight.com:

  1. GET /auth/session/new — fetch the Rails CSRF token and session cookie.
  2. POST /auth/session — log in with email + password (must happen before OAuth authorize).
  3. GET /oauth/authorize — receive the one-time authorization code via redirect.
  4. POST /oauth/token — exchange the code for a bearer access_token + refresh_token (7-day expiry).

The client then refreshes the token proactively (~60 s before expiry) and reactively on any 401. No bot wall has been observed — the headless flow works directly from Node.

No env vars → clean start: if credentials are not set, the server still starts without error. Auth is deferred to the first tool call, so MCP hosts can complete install-time tool listing before credentials are configured.

Frame model

All data in Skylight is scoped to a frame (the family hub device). On first use the client auto-discovers the single frame on the account. If the account has more than one frame, set SKYLIGHT_FRAME_ID to the frame ID you want. Every tool that reads frame-scoped data accepts an optional frameId arg to override the default.

Tools

ModuleToolR/WDescription
framesskylight_list_framesRList all frames on the account
framesskylight_get_frameRGet details for a specific frame
framesskylight_list_frame_membersRList members associated with a frame
framesskylight_list_devicesRList physical devices linked to a frame
framesskylight_get_plus_accessRGet Skylight Plus subscription / entitlement status
framesskylight_get_reward_pointsRGet reward-point balances per family member
framesskylight_get_household_configRGet household configuration for the frame
framesskylight_list_calendarsRList the frame's calendar accounts and active calendars
framesskylight_get_event_notification_settingsRGet the frame's calendar-event notification settings
framesskylight_resolve_memberRResolve a family-member name to its category id
framesskylight_get_calendarRGet one calendar account
framesskylight_list_nudgesRList nudges (reminders) in a date range
framesskylight_update_frameWUpdate frame display/sleep settings
framesskylight_rename_frameWRename a frame
framesskylight_update_profileWUpdate the frame profile (name, birthday)
framesskylight_update_household_configWUpdate household configuration
framesskylight_set_reminder_profileWSet the global reminder cadence (interval_weeks)
framesskylight_add_webcalWSubscribe the frame to a webcal/ICS calendar URL
framesskylight_update_calendarWSet which sub-calendars of a connected account are active
framesskylight_delete_source_calendarWRemove a connected source calendar (incl. webcal subscriptions)
framesskylight_set_default_calendarWSet the default source calendar for new events
framesskylight_link_apple_calendarWLink an Apple/iCloud calendar using an app-specific password
framesskylight_categorize_source_calendarWAttribute a source calendar's events to one or more family members
framesskylight_create_source_calendarWCreate a source calendar from raw provider attributes (advanced)
framesskylight_invite_userWInvite a user to the frame by email
framesskylight_approve_userWApprove a pending frame user
framesskylight_remove_userWRemove a user from the frame
framesskylight_delete_categoryWDelete a category / family member (optional reassign_to_category_id, inferred)
framesskylight_update_family_memberWUpdate a family member's profile — birthday, dietary preferences (the name is the category label; set via skylight_update_category)
framesskylight_update_categoryWUpdate a category — rename/recolor, or convert a label into a family-member profile (linked_to_profile)
framesskylight_create_categoryWCreate a category / family member (optional linked_to_profile, avatar_id)
framesskylight_list_avatarsRList the preset avatar library (emoji/icon images)
framesskylight_set_member_avatarWSet a family member's avatar to a custom photo (dry-run unless confirm:true)
framesskylight_set_device_albumWSet which photo album a device displays (inferred)
framesskylight_rename_deviceWRename a Skylight device
eventsskylight_list_eventsRList calendar events within a date range
eventsskylight_get_eventRGet details for a specific event
eventsskylight_create_eventWCreate a new calendar event (optional category_ids assigns members)
eventsskylight_update_eventWUpdate an existing calendar event (optional category_ids assigns members)
eventsskylight_delete_eventWDelete a calendar event
eventsskylight_list_categoriesRList event categories for a frame
eventsskylight_list_source_calendarsRList external source calendars linked to a frame
eventsskylight_list_recent_invited_emailsRList recently-invited email addresses
eventsskylight_update_event_notification_settingsWUpdate calendar-event notification settings
listsskylight_list_listsRList all shared lists on a frame
listsskylight_get_list_itemsRGet items in a specific shared list
listsskylight_create_listWCreate a new shared list (label + color + kind)
listsskylight_update_listWUpdate a list's name, color, or type
listsskylight_delete_listWDelete a shared list
listsskylight_add_list_itemWAdd an item to a shared list
listsskylight_update_list_itemWRename a list item, check/uncheck it, or set its section
listsskylight_delete_list_itemWDelete an item from a shared list
listsskylight_delete_list_itemsWBulk-delete specific list items
listsskylight_move_list_itemWReorder a list item
listsskylight_clear_listWRemove all items from a list (single bulk delete)
listsskylight_set_list_item_sectionWMove list items into a named section (or clear it)
choresskylight_list_choresRList chores within a date range
choresskylight_search_choresRSearch chores (incl. unscheduled/template chores)
choresskylight_create_choreWCreate a new chore (summary + category)
choresskylight_create_recurring_choreWCreate a recurring chore or routine (RRULE)
choresskylight_complete_choreWMark a chore complete
choresskylight_uncomplete_choreWReopen (un-complete) a chore
choresskylight_update_choreWUpdate a chore (supports recurrence + apply_to)
choresskylight_complete_chore_instanceWMark a specific recurring-chore occurrence complete
choresskylight_delete_choreWDelete a chore (occurrence or whole series via apply_to)
choresskylight_list_rewardsRList rewards configured for a frame
rewardsskylight_get_rewardRGet one reward
rewardsskylight_create_rewardWCreate a reward (name + description + point_value + respawn_on_redemption + category_ids)
rewardsskylight_update_rewardWUpdate a reward
rewardsskylight_delete_rewardWDelete a reward
rewardsskylight_redeem_rewardWRedeem a reward
rewardsskylight_unredeem_rewardWReverse a reward redemption
rewardsskylight_add_reward_pointsWGrant or deduct reward points to members
mealsskylight_list_mealsRList planned meals in a date range (date_min + date_max both required)
mealsskylight_list_recipesRList meal recipes for the frame
mealsskylight_list_meal_categoriesRList meal categories for the frame
mealsskylight_get_recipeRGet one meal recipe
mealsskylight_create_recipeWCreate a meal recipe (meal_category_id + summary)
mealsskylight_update_recipeWUpdate a meal recipe
mealsskylight_delete_recipeWDelete a meal recipe
mealsskylight_add_recipe_to_grocery_listWAdd a recipe's ingredients to a grocery list
mealsskylight_plan_mealWPlan a meal on a date (optionally repeating, link a recipe, add to grocery list)
messagesskylight_list_messagesRList messages posted to the frame
messagesskylight_list_albumsRList photo albums on the frame
messagesskylight_get_messageRGet one frame message
messagesskylight_create_albumWCreate a photo album
messagesskylight_update_albumWUpdate a photo album (rename, hide from slideshow)
messagesskylight_delete_albumWDelete a photo album
messagesskylight_add_to_albumWAdd messages/photos to albums
messagesskylight_remove_from_albumWRemove messages/photos from albums
messagesskylight_copy_messages_to_framesWCopy messages/photos to other frames on the account (inferred)
messagesskylight_add_message_commentWComment on a frame message/photo
messagesskylight_set_message_captionWSet a message/photo caption
messagesskylight_like_messageWLike a frame message/photo
messagesskylight_unlike_messageWRemove a like from a message/photo
messagesskylight_delete_messageWDelete a frame message/photo
messagesskylight_delete_messagesWBulk-delete messages/photos from the frame
tasksskylight_list_tasksRList task-box items
tasksskylight_create_taskWCreate a task-box item
tasksskylight_update_taskWUpdate a task-box item
tasksskylight_delete_taskWDelete a task-box item
aiskylight_generate_meal_planWGenerate an AI meal plan for given dates (draft meal sittings — async)
aiskylight_generate_activity_ideasWGenerate AI activity/event ideas for a location + time range (draft events — async)
aiskylight_get_auto_creation_intentRGet an AI auto-creation intent (status + draft results)
aiskylight_list_auto_creation_draftsRList the events an AI intent drafted (review before approving)
aiskylight_list_auto_creation_intentsRList all AI auto-creation intents on the frame
aiskylight_list_auto_creation_itemsRList every draft item an AI intent created (meals, activities, list items)
aiskylight_approve_auto_creationWApprove AI-drafted events into real calendar events
aiskylight_undo_auto_creationWUndo/discard an AI auto-creation intent and its drafts
photosskylight_upload_photoWUpload a photo/video from a local file to the frame (dry-run unless confirm:true)
photosskylight_import_events_from_photoWImport calendar events from a photo of a flyer/invite using Skylight's AI (best-effort)

Configuration

Required

SKYLIGHT_EMAIL=you@example.com
SKYLIGHT_PASSWORD=your-password

Optional

Env varDefaultPurpose
SKYLIGHT_FRAME_IDauto-discoveredForce a specific frame when the account has multiple
SKYLIGHT_NAME(none)Friendly label used in startup logs
SKYLIGHT_BASE_URLhttps://app.ourskylight.com/apiOverride the API base URL

Treat .env like a password file — it is gitignored, do not commit it.

Local dev

npm install
npm run build
npm test
npm run dev   # requires .env with credentials

Tests: vitest, 100% line/branch/function/statement coverage enforced. All tests are mocked — no network calls in CI.

Developed and maintained by AI (Claude). Use at your own discretion.

Rendered live from chrischall/skylight-mcp's GitHub README — not stored, always reflects the source repo.

1 Install Method

NameDescriptionCategorySource
npm packageInstall via npm (stdio transport)mcp-serverskylight-mcp

0 Comments

Login required
Log in to post a comment or update on this repo.

No comments yet — be the first to share an update.