skylight-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@skylight-mcpwhat's on my calendar for today?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
skylight-mcp
MCP server for Skylight Calendar — 102 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), and frame/device/account settings + calendar + member management (read+write).
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:
GET /auth/session/new— fetch the Rails CSRF token and session cookie.POST /auth/session— log in with email + password (must happen before OAuth authorize).GET /oauth/authorize— receive the one-time authorization code via redirect.POST /oauth/token— exchange the code for a beareraccess_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.
Related MCP server: mail-cal-drive-mcp
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
Module | Tool | R/W | Description |
frames |
| R | List all frames on the account |
frames |
| R | Get details for a specific frame |
frames |
| R | List members associated with a frame |
frames |
| R | List physical devices linked to a frame |
frames |
| R | Get Skylight Plus subscription / entitlement status |
frames |
| R | Get reward-point balances per family member |
frames |
| R | Get household configuration for the frame |
frames |
| R | List the frame's calendar accounts and active calendars |
frames |
| R | Get the frame's calendar-event notification settings |
frames |
| R | Resolve a family-member name to its category id |
frames |
| R | Get one calendar account |
frames |
| R | List nudges (reminders) in a date range |
frames |
| W | Update frame display/sleep settings |
frames |
| W | Rename a frame |
frames |
| W | Update the frame profile (name, birthday) |
frames |
| W | Update household configuration |
frames |
| W | Set the global reminder cadence (interval_weeks) |
frames |
| W | Subscribe the frame to a webcal/ICS calendar URL |
frames |
| W | Set which sub-calendars of a connected account are active |
frames |
| W | Remove a connected source calendar (incl. webcal subscriptions) |
frames |
| W | Set the default source calendar for new events |
frames |
| W | Link an Apple/iCloud calendar using an app-specific password |
frames |
| W | Attribute a source calendar's events to one or more family members |
frames |
| W | Create a source calendar from raw provider attributes (advanced) |
frames |
| W | Invite a user to the frame by email |
frames |
| W | Approve a pending frame user |
frames |
| W | Remove a user from the frame |
frames |
| W | Delete a category / family member (optional |
frames |
| W | Update a family member's profile — birthday, dietary preferences (the name is the category label; set via |
frames |
| W | Update a category — rename/recolor, or convert a label into a family-member profile ( |
frames |
| W | Set which photo album a device displays (inferred) |
frames |
| W | Rename a Skylight device |
events |
| R | List calendar events within a date range |
events |
| R | Get details for a specific event |
events |
| W | Create a new calendar event (optional |
events |
| W | Update an existing calendar event (optional |
events |
| W | Delete a calendar event |
events |
| R | List event categories for a frame |
events |
| R | List external source calendars linked to a frame |
events |
| R | List recently-invited email addresses |
events |
| W | Update calendar-event notification settings |
lists |
| R | List all shared lists on a frame |
lists |
| R | Get items in a specific shared list |
lists |
| W | Create a new shared list (label + color + kind) |
lists |
| W | Update a list's name, color, or type |
lists |
| W | Delete a shared list |
lists |
| W | Add an item to a shared list |
lists |
| W | Rename a list item, check/uncheck it, or set its section |
lists |
| W | Delete an item from a shared list |
lists |
| W | Bulk-delete specific list items |
lists |
| W | Reorder a list item |
lists |
| W | Remove all items from a list (single bulk delete) |
lists |
| W | Move list items into a named section (or clear it) |
chores |
| R | List chores within a date range |
chores |
| R | Search chores (incl. unscheduled/template chores) |
chores |
| W | Create a new chore (summary + category) |
chores |
| W | Create a recurring chore or routine (RRULE) |
chores |
| W | Mark a chore complete |
chores |
| W | Reopen (un-complete) a chore |
chores |
| W | Update a chore (supports recurrence + |
chores |
| W | Mark a specific recurring-chore occurrence complete |
chores |
| W | Delete a chore (occurrence or whole series via |
chores |
| R | List rewards configured for a frame |
rewards |
| R | Get one reward |
rewards |
| W | Create a reward (name + description + point_value + respawn_on_redemption + category_ids) |
rewards |
| W | Update a reward |
rewards |
| W | Delete a reward |
rewards |
| W | Redeem a reward |
rewards |
| W | Reverse a reward redemption |
rewards |
| W | Grant or deduct reward points to members |
meals |
| R | List meal recipes for the frame |
meals |
| R | List meal categories for the frame |
meals |
| R | Get one meal recipe |
meals |
| W | Create a meal recipe (meal_category_id + summary) |
meals |
| W | Update a meal recipe |
meals |
| W | Delete a meal recipe |
meals |
| W | Add a recipe's ingredients to a grocery list |
meals |
| W | Plan a meal on a date (optionally repeating, link a recipe, add to grocery list) |
messages |
| R | List messages posted to the frame |
messages |
| R | List photo albums on the frame |
messages |
| R | Get one frame message |
messages |
| W | Create a photo album |
messages |
| W | Update a photo album (rename, hide from slideshow) |
messages |
| W | Delete a photo album |
messages |
| W | Add messages/photos to albums |
messages |
| W | Remove messages/photos from albums |
messages |
| W | Comment on a frame message/photo |
messages |
| W | Set a message/photo caption |
messages |
| W | Like a frame message/photo |
messages |
| W | Remove a like from a message/photo |
messages |
| W | Delete a frame message/photo |
messages |
| W | Bulk-delete messages/photos from the frame |
tasks |
| R | List task-box items |
tasks |
| W | Create a task-box item |
tasks |
| W | Update a task-box item |
tasks |
| W | Delete a task-box item |
ai |
| W | Generate an AI meal plan for given dates (draft meal sittings — async) |
ai |
| W | Generate AI activity/event ideas for a location + time range (draft events — async) |
ai |
| R | Get an AI auto-creation intent (status + draft results) |
ai |
| R | List the events an AI intent drafted (review before approving) |
ai |
| W | Approve AI-drafted events into real calendar events |
ai |
| W | Undo/discard an AI auto-creation intent and its drafts |
Configuration
Required
SKYLIGHT_EMAIL=you@example.com
SKYLIGHT_PASSWORD=your-passwordOptional
Env var | Default | Purpose |
| auto-discovered | Force a specific frame when the account has multiple |
| (none) | Friendly label used in startup logs |
|
| Override 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 credentialsTests: 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.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceMCP server that seamlessly interacts with your Google Calendar, Gmail, Drive and so on.Last updated30MIT
- Alicense-qualityDmaintenanceA self-hosted MCP server for managing email, calendar, and cloud storage across Microsoft 365, Google Workspace, and IMAP accounts, enabling natural language interaction through any MCP client.Last updated1MIT
- Alicense-qualityBmaintenanceMCP server for Apple Calendar, Mail, Reminders, and Files on macOS using native frameworks.Last updated6611MIT
- AlicenseAqualityCmaintenanceMCP server for privacy-gated local Apple data access including Mail, Messages, Notes, Calendar, Contacts, Photos, Reminders, Voice Memos, and iCloud Drive.Last updated301MIT
Related MCP Connectors
Hosted Google Calendar MCP server for AI agents. No self-hosting or Google Cloud setup.
MCP server for Zooza — class scheduling, attendance, and booking for activity businesses.
MCP server for Appcircle mobile CI/CD platform.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/chrischall/skylight-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server