@bmhall2/skylight-mcp 1.1.7 → 1.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 EagleByte
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2025 EagleByte
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,265 +1,265 @@
1
- # Skylight MCP Server
2
-
3
- > **Maintained fork** of [TheEagleByte/skylight-mcp](https://github.com/TheEagleByte/skylight-mcp). The original project appears to be abandoned; this fork continues active development.
4
-
5
- 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.
6
-
7
- ## Features
8
-
9
- - **Calendar**: Query calendar events ("What's on my calendar today?")
10
- - **Chores**: View and create chores ("Add emptying dishwasher to chores")
11
- - **Lists**: View grocery and to-do lists ("What's on the grocery list?")
12
- - **Tasks**: Add items to the task box ("Add XYZ to my task list")
13
- - **Family**: View family members and devices
14
- - **Rewards**: Check reward points and available rewards
15
-
16
- ## Quick Start
17
-
18
- ### Installation
19
-
20
- #### Option 1: npm package (Recommended)
21
-
22
- **mcp.json:**
23
- ```json
24
- {
25
- "mcpServers": {
26
- "skylight": {
27
- "command": "npx",
28
- "args": ["@bmhall2/skylight-mcp"],
29
- "env": {
30
- "SKYLIGHT_EMAIL": "your_email@example.com",
31
- "SKYLIGHT_PASSWORD": "your_password",
32
- "SKYLIGHT_FRAME_ID": "your_frame_id"
33
- }
34
- }
35
- }
36
- }
37
- ```
38
-
39
- **Claude Code:**
40
- ```bash
41
- claude mcp add skylight npx @bmhall2/skylight-mcp \
42
- -e SKYLIGHT_EMAIL=your_email@example.com \
43
- -e SKYLIGHT_PASSWORD=your_password \
44
- -e SKYLIGHT_FRAME_ID=your_frame_id
45
- ```
46
-
47
- #### Option 2: From source
48
-
49
- ```bash
50
- git clone https://github.com/bmhall2/skylight-mcp.git
51
- cd skylight-mcp && npm install && npm run build
52
- ```
53
-
54
- Then use in mcp.json:
55
- ```json
56
- {
57
- "mcpServers": {
58
- "skylight": {
59
- "command": "node",
60
- "args": ["/path/to/skylight-mcp/dist/index.js"],
61
- "env": {
62
- "SKYLIGHT_EMAIL": "your_email@example.com",
63
- "SKYLIGHT_PASSWORD": "your_password",
64
- "SKYLIGHT_FRAME_ID": "your_frame_id"
65
- }
66
- }
67
- }
68
- }
69
- ```
70
-
71
- ### Instructions for AI
72
-
73
- Copy this into your AI's custom instructions or system prompt:
74
-
75
- > 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.
76
- >
77
- > Tips:
78
- > - Call `get_family_members` before assigning chores to get member names
79
- > - Grocery items default to the main grocery list if no list specified
80
- > - Dates accept "today", "tomorrow", day names, or YYYY-MM-DD format
81
- > - Some tools (rewards, meals, photos) require Skylight Plus subscription
82
-
83
- ## Prerequisites
84
-
85
- - Node.js 18+
86
- - A Skylight account with an active subscription
87
- - Your Skylight Frame ID (see [Finding your Frame ID](#finding-your-frame-id))
88
-
89
- ## Authentication
90
-
91
- The MCP server supports two authentication methods:
92
-
93
- ### Option 1: Email/Password (Recommended)
94
-
95
- Use your Skylight account credentials. The server will automatically log in and manage tokens.
96
-
97
- ```env
98
- SKYLIGHT_EMAIL=your_email@example.com
99
- SKYLIGHT_PASSWORD=your_password
100
- SKYLIGHT_FRAME_ID=your_frame_id
101
- ```
102
-
103
- ### Option 2: Manual Token (Legacy)
104
-
105
- Capture a token from the Skylight app using a proxy tool.
106
-
107
- ```env
108
- SKYLIGHT_TOKEN=your_token_here
109
- SKYLIGHT_FRAME_ID=your_frame_id
110
- SKYLIGHT_AUTH_TYPE=bearer
111
- ```
112
-
113
- ### Finding your Frame ID
114
-
115
- You still need to find your frame ID (the household identifier):
116
-
117
- 1. Use a proxy tool ([Proxyman](https://proxyman.io/), [Charles](https://www.charlesproxy.com/), or [mitmproxy](https://mitmproxy.org/))
118
- 2. Capture any API request from the Skylight app
119
- 3. Look at the URL path: `/api/frames/{frameId}/...`
120
- 4. Example: `/api/frames/abc123/chores` → frame ID is `abc123`
121
-
122
- ## Configuration
123
-
124
- | Variable | Required | Description |
125
- |----------|----------|-------------|
126
- | `SKYLIGHT_EMAIL` | Option 1 | Your Skylight account email |
127
- | `SKYLIGHT_PASSWORD` | Option 1 | Your Skylight account password |
128
- | `SKYLIGHT_TOKEN` | Option 2 | Your API token (if not using email/password) |
129
- | `SKYLIGHT_AUTH_TYPE` | No | `bearer` (default) or `basic` (for manual token) |
130
- | `SKYLIGHT_FRAME_ID` | Yes | Your household frame ID |
131
- | `SKYLIGHT_TIMEZONE` | No | Default timezone (default: `America/New_York`) |
132
-
133
- ### Example .env file:
134
-
135
- ```env
136
- # Email/password auth (recommended)
137
- SKYLIGHT_EMAIL=your_email@example.com
138
- SKYLIGHT_PASSWORD=your_password
139
- SKYLIGHT_FRAME_ID=your_frame_id
140
- SKYLIGHT_TIMEZONE=America/New_York
141
- ```
142
-
143
- ## Available Tools
144
-
145
- ### Calendar Tools
146
-
147
- | Tool | Description |
148
- |------|-------------|
149
- | `get_calendar_events` | Get calendar events for a date range |
150
- | `get_source_calendars` | List connected calendar sources (Google, iCloud, etc.) |
151
-
152
- ### Chore Tools
153
-
154
- | Tool | Description |
155
- |------|-------------|
156
- | `get_chores` | Get chores with optional filters (date, assignee, status) |
157
- | `create_chore` | Create a new chore with optional recurrence |
158
-
159
- ### List Tools
160
-
161
- | Tool | Description |
162
- |------|-------------|
163
- | `get_lists` | Get all available lists |
164
- | `get_list_items` | Get items from a specific list |
165
-
166
- ### Task Tools
167
-
168
- | Tool | Description |
169
- |------|-------------|
170
- | `create_task` | Add a task to the task box |
171
-
172
- ### Family Tools
173
-
174
- | Tool | Description |
175
- |------|-------------|
176
- | `get_family_members` | Get family member profiles |
177
- | `get_frame_info` | Get household/frame information |
178
- | `get_devices` | List Skylight devices |
179
-
180
- ### Reward Tools
181
-
182
- | Tool | Description |
183
- |------|-------------|
184
- | `get_rewards` | Get available rewards |
185
- | `get_reward_points` | Get reward points balance |
186
-
187
- ## Example Queries
188
-
189
- Once configured, you can ask Claude things like:
190
-
191
- - "What's on my calendar today?"
192
- - "What chores do I need to do this week?"
193
- - "Add 'take out trash' to my chores for tomorrow"
194
- - "What's on the grocery list?"
195
- - "Add milk to my task list"
196
- - "Who are the family members on Skylight?"
197
- - "How many reward points does each person have?"
198
-
199
- ## Development
200
-
201
- ```bash
202
- # Run in development mode (with hot reload)
203
- npm run dev
204
-
205
- # Build
206
- npm run build
207
-
208
- # Run tests
209
- npm test
210
-
211
- # Type check
212
- npm run typecheck
213
- ```
214
-
215
- ## API Documentation
216
-
217
- This MCP server is built on top of the reverse-engineered Skylight API. The API endpoints were documented using the [skylight-api](https://github.com/TheEagleByte/skylight-api) project, which converts browser network traffic (HAR files) into an OpenAPI specification.
218
-
219
- **API Resources:**
220
- - [Interactive API Docs (Swagger UI)](https://theeaglebyte.github.io/skylight-api/swagger.html)
221
- - [API Reference (ReDoc)](https://theeaglebyte.github.io/skylight-api/redoc.html)
222
- - [OpenAPI Specification](https://theeaglebyte.github.io/skylight-api/openapi/openapi.yaml)
223
-
224
- If you discover new API endpoints or find issues with the current documentation, please contribute to the [skylight-api](https://github.com/TheEagleByte/skylight-api) repository.
225
-
226
- ## Contributing
227
-
228
- Contributions are welcome! Here's how you can help:
229
-
230
- 1. **Fork the repository** and create a feature branch
231
- 2. **Make your changes** with clear, descriptive commits
232
- 3. **Run tests** (`npm test`) and linting (`npm run lint`) before submitting
233
- 4. **Open a pull request** with a description of your changes
234
-
235
- ### Development Setup
236
-
237
- ```bash
238
- git clone https://github.com/bmhall2/skylight-mcp.git
239
- cd skylight-mcp
240
- npm install
241
- npm run dev # Start with hot reload
242
- ```
243
-
244
- ### Areas for Contribution
245
-
246
- - Adding support for new Skylight API endpoints
247
- - Improving error handling and edge cases
248
- - Enhancing documentation
249
- - Writing additional tests
250
-
251
- ## Issues & Support
252
-
253
- - **Bug reports**: [Open an issue](https://github.com/bmhall2/skylight-mcp/issues/new) with steps to reproduce
254
- - **Feature requests**: [Open an issue](https://github.com/bmhall2/skylight-mcp/issues/new) describing the use case
255
- - **Questions**: [Start a discussion](https://github.com/bmhall2/skylight-mcp/discussions) or open an issue
256
-
257
- Please include relevant details like your Node.js version, error messages, and configuration (with sensitive values redacted).
258
-
259
- ## License
260
-
261
- MIT
262
-
263
- ## Disclaimer
264
-
265
- This is an unofficial integration. The Skylight API is reverse-engineered and may change without notice. Use at your own risk.
1
+ # Skylight MCP Server
2
+
3
+ > **Maintained fork** of [TheEagleByte/skylight-mcp](https://github.com/TheEagleByte/skylight-mcp). The original project appears to be abandoned; this fork continues active development.
4
+
5
+ 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.
6
+
7
+ ## Features
8
+
9
+ - **Calendar**: Query calendar events ("What's on my calendar today?")
10
+ - **Chores**: View and create chores ("Add emptying dishwasher to chores")
11
+ - **Lists**: View grocery and to-do lists ("What's on the grocery list?")
12
+ - **Tasks**: Add items to the task box ("Add XYZ to my task list")
13
+ - **Family**: View family members and devices
14
+ - **Rewards**: Check reward points and available rewards
15
+
16
+ ## Quick Start
17
+
18
+ ### Installation
19
+
20
+ #### Option 1: npm package (Recommended)
21
+
22
+ **mcp.json:**
23
+ ```json
24
+ {
25
+ "mcpServers": {
26
+ "skylight": {
27
+ "command": "npx",
28
+ "args": ["@bmhall2/skylight-mcp"],
29
+ "env": {
30
+ "SKYLIGHT_EMAIL": "your_email@example.com",
31
+ "SKYLIGHT_PASSWORD": "your_password",
32
+ "SKYLIGHT_FRAME_ID": "your_frame_id"
33
+ }
34
+ }
35
+ }
36
+ }
37
+ ```
38
+
39
+ **Claude Code:**
40
+ ```bash
41
+ claude mcp add skylight npx @bmhall2/skylight-mcp \
42
+ -e SKYLIGHT_EMAIL=your_email@example.com \
43
+ -e SKYLIGHT_PASSWORD=your_password \
44
+ -e SKYLIGHT_FRAME_ID=your_frame_id
45
+ ```
46
+
47
+ #### Option 2: From source
48
+
49
+ ```bash
50
+ git clone https://github.com/bmhall2/skylight-mcp.git
51
+ cd skylight-mcp && npm install && npm run build
52
+ ```
53
+
54
+ Then use in mcp.json:
55
+ ```json
56
+ {
57
+ "mcpServers": {
58
+ "skylight": {
59
+ "command": "node",
60
+ "args": ["/path/to/skylight-mcp/dist/index.js"],
61
+ "env": {
62
+ "SKYLIGHT_EMAIL": "your_email@example.com",
63
+ "SKYLIGHT_PASSWORD": "your_password",
64
+ "SKYLIGHT_FRAME_ID": "your_frame_id"
65
+ }
66
+ }
67
+ }
68
+ }
69
+ ```
70
+
71
+ ### Instructions for AI
72
+
73
+ Copy this into your AI's custom instructions or system prompt:
74
+
75
+ > 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.
76
+ >
77
+ > Tips:
78
+ > - Call `get_family_members` before assigning chores to get member names
79
+ > - Grocery items default to the main grocery list if no list specified
80
+ > - Dates accept "today", "tomorrow", day names, or YYYY-MM-DD format
81
+ > - Some tools (rewards, meals, photos) require Skylight Plus subscription
82
+
83
+ ## Prerequisites
84
+
85
+ - Node.js 18+
86
+ - A Skylight account with an active subscription
87
+ - Your Skylight Frame ID (see [Finding your Frame ID](#finding-your-frame-id))
88
+
89
+ ## Authentication
90
+
91
+ The MCP server supports two authentication methods:
92
+
93
+ ### Option 1: Email/Password (Recommended)
94
+
95
+ Use your Skylight account credentials. The server will automatically log in and manage tokens.
96
+
97
+ ```env
98
+ SKYLIGHT_EMAIL=your_email@example.com
99
+ SKYLIGHT_PASSWORD=your_password
100
+ SKYLIGHT_FRAME_ID=your_frame_id
101
+ ```
102
+
103
+ ### Option 2: Manual Token (Legacy)
104
+
105
+ Capture a token from the Skylight app using a proxy tool.
106
+
107
+ ```env
108
+ SKYLIGHT_TOKEN=your_token_here
109
+ SKYLIGHT_FRAME_ID=your_frame_id
110
+ SKYLIGHT_AUTH_TYPE=bearer
111
+ ```
112
+
113
+ ### Finding your Frame ID
114
+
115
+ You still need to find your frame ID (the household identifier):
116
+
117
+ 1. Use a proxy tool ([Proxyman](https://proxyman.io/), [Charles](https://www.charlesproxy.com/), or [mitmproxy](https://mitmproxy.org/))
118
+ 2. Capture any API request from the Skylight app
119
+ 3. Look at the URL path: `/api/frames/{frameId}/...`
120
+ 4. Example: `/api/frames/abc123/chores` → frame ID is `abc123`
121
+
122
+ ## Configuration
123
+
124
+ | Variable | Required | Description |
125
+ |----------|----------|-------------|
126
+ | `SKYLIGHT_EMAIL` | Option 1 | Your Skylight account email |
127
+ | `SKYLIGHT_PASSWORD` | Option 1 | Your Skylight account password |
128
+ | `SKYLIGHT_TOKEN` | Option 2 | Your API token (if not using email/password) |
129
+ | `SKYLIGHT_AUTH_TYPE` | No | `bearer` (default) or `basic` (for manual token) |
130
+ | `SKYLIGHT_FRAME_ID` | Yes | Your household frame ID |
131
+ | `SKYLIGHT_TIMEZONE` | No | Default timezone (default: `America/New_York`) |
132
+
133
+ ### Example .env file:
134
+
135
+ ```env
136
+ # Email/password auth (recommended)
137
+ SKYLIGHT_EMAIL=your_email@example.com
138
+ SKYLIGHT_PASSWORD=your_password
139
+ SKYLIGHT_FRAME_ID=your_frame_id
140
+ SKYLIGHT_TIMEZONE=America/New_York
141
+ ```
142
+
143
+ ## Available Tools
144
+
145
+ ### Calendar Tools
146
+
147
+ | Tool | Description |
148
+ |------|-------------|
149
+ | `get_calendar_events` | Get calendar events for a date range |
150
+ | `get_source_calendars` | List connected calendar sources (Google, iCloud, etc.) |
151
+
152
+ ### Chore Tools
153
+
154
+ | Tool | Description |
155
+ |------|-------------|
156
+ | `get_chores` | Get chores with optional filters (date, assignee, status) |
157
+ | `create_chore` | Create a new chore with optional recurrence |
158
+
159
+ ### List Tools
160
+
161
+ | Tool | Description |
162
+ |------|-------------|
163
+ | `get_lists` | Get all available lists |
164
+ | `get_list_items` | Get items from a specific list |
165
+
166
+ ### Task Tools
167
+
168
+ | Tool | Description |
169
+ |------|-------------|
170
+ | `create_task` | Add a task to the task box |
171
+
172
+ ### Family Tools
173
+
174
+ | Tool | Description |
175
+ |------|-------------|
176
+ | `get_family_members` | Get family member profiles |
177
+ | `get_frame_info` | Get household/frame information |
178
+ | `get_devices` | List Skylight devices |
179
+
180
+ ### Reward Tools
181
+
182
+ | Tool | Description |
183
+ |------|-------------|
184
+ | `get_rewards` | Get available rewards |
185
+ | `get_reward_points` | Get reward points balance |
186
+
187
+ ## Example Queries
188
+
189
+ Once configured, you can ask Claude things like:
190
+
191
+ - "What's on my calendar today?"
192
+ - "What chores do I need to do this week?"
193
+ - "Add 'take out trash' to my chores for tomorrow"
194
+ - "What's on the grocery list?"
195
+ - "Add milk to my task list"
196
+ - "Who are the family members on Skylight?"
197
+ - "How many reward points does each person have?"
198
+
199
+ ## Development
200
+
201
+ ```bash
202
+ # Run in development mode (with hot reload)
203
+ npm run dev
204
+
205
+ # Build
206
+ npm run build
207
+
208
+ # Run tests
209
+ npm test
210
+
211
+ # Type check
212
+ npm run typecheck
213
+ ```
214
+
215
+ ## API Documentation
216
+
217
+ This MCP server is built on top of the reverse-engineered Skylight API. The API endpoints were documented using the [skylight-api](https://github.com/TheEagleByte/skylight-api) project, which converts browser network traffic (HAR files) into an OpenAPI specification.
218
+
219
+ **API Resources:**
220
+ - [Interactive API Docs (Swagger UI)](https://theeaglebyte.github.io/skylight-api/swagger.html)
221
+ - [API Reference (ReDoc)](https://theeaglebyte.github.io/skylight-api/redoc.html)
222
+ - [OpenAPI Specification](https://theeaglebyte.github.io/skylight-api/openapi/openapi.yaml)
223
+
224
+ If you discover new API endpoints or find issues with the current documentation, please contribute to the [skylight-api](https://github.com/TheEagleByte/skylight-api) repository.
225
+
226
+ ## Contributing
227
+
228
+ Contributions are welcome! Here's how you can help:
229
+
230
+ 1. **Fork the repository** and create a feature branch
231
+ 2. **Make your changes** with clear, descriptive commits
232
+ 3. **Run tests** (`npm test`) and linting (`npm run lint`) before submitting
233
+ 4. **Open a pull request** with a description of your changes
234
+
235
+ ### Development Setup
236
+
237
+ ```bash
238
+ git clone https://github.com/bmhall2/skylight-mcp.git
239
+ cd skylight-mcp
240
+ npm install
241
+ npm run dev # Start with hot reload
242
+ ```
243
+
244
+ ### Areas for Contribution
245
+
246
+ - Adding support for new Skylight API endpoints
247
+ - Improving error handling and edge cases
248
+ - Enhancing documentation
249
+ - Writing additional tests
250
+
251
+ ## Issues & Support
252
+
253
+ - **Bug reports**: [Open an issue](https://github.com/bmhall2/skylight-mcp/issues/new) with steps to reproduce
254
+ - **Feature requests**: [Open an issue](https://github.com/bmhall2/skylight-mcp/issues/new) describing the use case
255
+ - **Questions**: [Start a discussion](https://github.com/bmhall2/skylight-mcp/discussions) or open an issue
256
+
257
+ Please include relevant details like your Node.js version, error messages, and configuration (with sensitive values redacted).
258
+
259
+ ## License
260
+
261
+ MIT
262
+
263
+ ## Disclaimer
264
+
265
+ This is an unofficial integration. The Skylight API is reverse-engineered and may change without notice. Use at your own risk.
@@ -110,8 +110,8 @@ export interface CalendarEventAttributes {
110
110
  [key: string]: unknown;
111
111
  }
112
112
  export interface CalendarEventRelationships {
113
- categories?: {
114
- data: JsonApiResourceId[];
113
+ category?: {
114
+ data: JsonApiResourceId | null;
115
115
  };
116
116
  }
117
117
  export interface CalendarEventResource {
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/api/types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/api/types.ts"],"names":[],"mappings":"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"}