@hasna/todos 0.11.37 → 0.11.38

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/README.md CHANGED
@@ -23,7 +23,14 @@ todos --help
23
23
  todos-mcp
24
24
  ```
25
25
 
26
- 135 tools available.
26
+ The MCP server defaults to the token-saving `TODOS_PROFILE=minimal` profile.
27
+ Use `TODOS_PROFILE=standard` for broader task/project/resource tools, or
28
+ `TODOS_PROFILE=full` when you explicitly need every tool. You can add groups
29
+ with `TODOS_TOOL_GROUPS=cloud,templates`.
30
+
31
+ High-volume tools return compact payloads by default. Pass `detail: "full"` to
32
+ MCP calls such as `get_task`, `get_status`, `get_context`, `bootstrap`, and
33
+ `task_context` when you need full data.
27
34
 
28
35
  ## REST API
29
36
 
@@ -43,6 +50,14 @@ todos-serve --host 0.0.0.0
43
50
  Pass the generated key from your app as `x-api-key` or set `TODOS_API_KEY` for
44
51
  the SDK client.
45
52
 
53
+ Agent callers can trim REST responses with field selectors:
54
+
55
+ ```bash
56
+ curl "http://localhost:19427/api/tasks?fields=id,title,status,priority"
57
+ curl "http://localhost:19427/api/tasks/<id>?fields=id,title,status"
58
+ curl "http://localhost:19427/api/tasks/<id>/history?limit=20"
59
+ ```
60
+
46
61
  ## Cloud Sync
47
62
 
48
63
  This package supports cloud sync via `@hasna/cloud`: