mcp-sunsama 0.2.2 → 0.3.0

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.
@@ -16,7 +16,8 @@
16
16
  "Bash(gh auth:*)",
17
17
  "Bash(npm ls:*)",
18
18
  "Bash(cat:*)",
19
- "Bash(grep:*)"
19
+ "Bash(grep:*)",
20
+ "Bash(mkdir:*)"
20
21
  ],
21
22
  "deny": []
22
23
  },
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # mcp-sunsama
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - cdbbdc6: Add update-task-snooze-date tool for comprehensive task scheduling
8
+
9
+ - New `update-task-snooze-date` MCP tool enables moving tasks between days, scheduling backlog tasks, and unscheduling tasks to backlog
10
+ - Supports timezone handling and response payload limiting options
11
+ - Uses existing sunsama-api `updateTaskSnoozeDate` method with proper Zod schema validation
12
+ - Addresses three key user stories through single unified tool interface
13
+
3
14
  ## 0.2.2
4
15
 
5
16
  ### Patch Changes
package/CLAUDE.md CHANGED
@@ -134,4 +134,10 @@ Configure different server variants in `mcp-inspector.json` for testing various
134
134
  When updating the version:
135
135
  1. Update `package.json` version (done automatically by changesets)
136
136
  2. Manually update the FastMCP server version in `src/main.ts`
137
- 3. Both versions must be identical for consistency
137
+ 3. Both versions must be identical for consistency
138
+
139
+ ## Git Rules
140
+
141
+ **IMPORTANT**: Never commit the `dev/` directory or any of its files to git. This directory contains development data including sample API responses and testing data that should remain local only.
142
+
143
+ **IMPORTANT**: Never include "Claude" in git commit messages. Keep commit messages professional and focused on the actual changes made.
package/README.md CHANGED
@@ -7,7 +7,7 @@ A Model Context Protocol (MCP) server that provides comprehensive task managemen
7
7
  ### Task Management
8
8
  - **Create Tasks** - Create new tasks with notes, time estimates, due dates, and stream assignments
9
9
  - **Read Tasks** - Get tasks by day with completion filtering, access backlog tasks
10
- - **Update Tasks** - Mark tasks as complete with custom timestamps
10
+ - **Update Tasks** - Mark tasks as complete with custom timestamps, reschedule tasks or move to backlog
11
11
  - **Delete Tasks** - Permanently remove tasks from your workspace
12
12
 
13
13
  ### User & Stream Operations
@@ -92,6 +92,7 @@ Add this configuration to your Claude Desktop MCP settings:
92
92
  - `get-tasks-by-day` - Get tasks for a specific day with completion filtering
93
93
  - `get-tasks-backlog` - Get backlog tasks
94
94
  - `update-task-complete` - Mark tasks as complete
95
+ - `update-task-snooze-date` - Reschedule tasks to different dates or move to backlog
95
96
  - `delete-task` - Delete tasks permanently
96
97
 
97
98
  ### User & Stream Operations
package/bun.lock CHANGED
@@ -7,7 +7,7 @@
7
7
  "@types/papaparse": "^5.3.16",
8
8
  "fastmcp": "2.1.3",
9
9
  "papaparse": "^5.5.3",
10
- "sunsama-api": "0.2.1",
10
+ "sunsama-api": "0.3.0",
11
11
  "zod": "3.24.4",
12
12
  },
13
13
  "devDependencies": {
@@ -428,7 +428,7 @@
428
428
 
429
429
  "strtok3": ["strtok3@10.3.1", "", { "dependencies": { "@tokenizer/token": "^0.3.0" } }, "sha512-3JWEZM6mfix/GCJBBUrkA8p2Id2pBkyTkVCJKto55w080QBKZ+8R171fGrbiSp+yMO/u6F8/yUh7K4V9K+YCnw=="],
430
430
 
431
- "sunsama-api": ["sunsama-api@0.2.1", "", { "dependencies": { "graphql": "^16.11.0", "graphql-tag": "^2.12.6", "tough-cookie": "^5.1.2", "tslib": "^2.8.1" } }, "sha512-G98BCWEZ+Du4NGyEL9SxMqwmEfmZrgKHwTdL3nAVUua4X9toTI9NIiN+zlUFKqN+n+iaF5Xsz0g3lAC/axZcDQ=="],
431
+ "sunsama-api": ["sunsama-api@0.3.0", "", { "dependencies": { "graphql": "^16.11.0", "graphql-tag": "^2.12.6", "tough-cookie": "^5.1.2", "tslib": "^2.8.1", "zod": "^3.25.64" } }, "sha512-xXgwm2WSVHpHU/0yhOK/3TUQlRSPtQS0UF/+q0liHJiZh1LjUJwgnmaK5rZcEvJ2s1rFVqWgm6GTMZ3t2r5ynw=="],
432
432
 
433
433
  "term-size": ["term-size@2.2.1", "", {}, "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg=="],
434
434
 
@@ -511,5 +511,7 @@
511
511
  "npm-run-path/path-key": ["path-key@4.0.0", "", {}, "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ=="],
512
512
 
513
513
  "raw-body/iconv-lite": ["iconv-lite@0.6.3", "", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" } }, "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw=="],
514
+
515
+ "sunsama-api/zod": ["zod@3.25.64", "", {}, "sha512-hbP9FpSZf7pkS7hRVUrOjhwKJNyampPgtXKc3AN6DsWtoHsg2Sb4SQaS4Tcay380zSwd2VPo9G9180emBACp5g=="],
514
516
  }
515
517
  }