@j0hanz/todokit-mcp 1.3.1 → 1.3.2
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/dist/instructions.md +14 -0
- package/package.json +2 -2
package/dist/instructions.md
CHANGED
|
@@ -11,6 +11,20 @@ Use this server to manage a small, persistent todo list (JSON file storage). Pre
|
|
|
11
11
|
- Treat `delete_todo` as destructive: ask for explicit confirmation unless the user clearly requested deletion.
|
|
12
12
|
- Keep entries atomic and actionable. If a request is vague, ask a clarifying question before creating todos.
|
|
13
13
|
|
|
14
|
+
### Quick Decision Rules
|
|
15
|
+
|
|
16
|
+
- If you are unsure what exists: call `list_todos` (default: pending) before any mutation.
|
|
17
|
+
- If the user gives 2+ tasks: use `add_todos` (single call) instead of multiple `add_todo` calls.
|
|
18
|
+
- If the user asks to “remove”/“delete” without naming a specific item: `list_todos` and ask which `id`.
|
|
19
|
+
- Prefer `complete_todo` over `delete_todo` unless it’s a mistake/duplicate.
|
|
20
|
+
|
|
21
|
+
### Client UX Notes (VS Code)
|
|
22
|
+
|
|
23
|
+
- VS Code typically prompts for confirmation before running tools that are not marked read-only.
|
|
24
|
+
- VS Code may cache tool lists; users can clear the cache via **MCP: Reset Cached Tools**.
|
|
25
|
+
- Models have a limit on how many tools can be enabled at once (VS Code mentions a 128-tool limit per request). If tool selection gets noisy, narrow to the minimum tools needed.
|
|
26
|
+
- Only run MCP servers from trusted sources; VS Code prompts users to trust servers when they’re first started.
|
|
27
|
+
|
|
14
28
|
## Data Model (What a Todo Looks Like)
|
|
15
29
|
|
|
16
30
|
Each todo has:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@j0hanz/todokit-mcp",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"mcpName": "io.github.j0hanz/todokit",
|
|
5
5
|
"description": "A MCP server for Todokit, a task management and productivity tool with JSON storage.",
|
|
6
6
|
"type": "module",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"prettier": "^3.7.4",
|
|
69
69
|
"tsx": "^4.21.0",
|
|
70
70
|
"typescript": "^5.9.3",
|
|
71
|
-
"typescript-eslint": "^8.
|
|
71
|
+
"typescript-eslint": "^8.53.0"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
74
|
"node": ">=20.0.0"
|