@starasia/task-management-mcp 1.1.5 → 1.1.6
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 +9 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -198,7 +198,7 @@ CLI/local fallback flow:
|
|
|
198
198
|
|
|
199
199
|
Manual fallback remains available through `set_auth_context` when explicitly needed.
|
|
200
200
|
|
|
201
|
-
The MCP stores auth context in an encrypted local store and process memory, returns masked auth status, and never returns the bearer token from any tool.
|
|
201
|
+
The MCP stores auth context in an encrypted local store and process memory, returns masked auth status, and never returns the bearer token from any tool. The persisted context is reused until its configured expiry.
|
|
202
202
|
|
|
203
203
|
Call `clear_auth_context` when the session is done; it clears process state, pending SSO sessions, web login sessions, and the persisted auth store.
|
|
204
204
|
|
|
@@ -216,6 +216,14 @@ Optional SSO API base URL override, mainly for local/dev testing:
|
|
|
216
216
|
TASK_MANAGEMENT_SSO_API_BASE_URL=https://api.starasia.tech/sso
|
|
217
217
|
```
|
|
218
218
|
|
|
219
|
+
Optional auth persistence TTL override. The value is milliseconds; for example, 30 days:
|
|
220
|
+
|
|
221
|
+
```bash
|
|
222
|
+
TASK_MANAGEMENT_AUTH_TTL_MS=2592000000
|
|
223
|
+
```
|
|
224
|
+
|
|
225
|
+
Use a stable `TASK_MANAGEMENT_AUTH_STORE_KEY` in deployment so the encrypted auth store remains readable after MCP restarts.
|
|
226
|
+
|
|
219
227
|
Passwords are accepted only by `sso_login`; the resulting token stays in MCP process memory and is never returned.
|
|
220
228
|
|
|
221
229
|
## Safety notes
|