sub-agents-mcp 0.2.0 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -265,7 +265,7 @@ Add these environment variables to your MCP configuration:
265
265
  "AGENT_TYPE": "cursor",
266
266
  "SESSION_ENABLED": "true",
267
267
  "SESSION_DIR": "/absolute/path/to/session-storage",
268
- "SESSION_RETENTION_DAYS": "7"
268
+ "SESSION_RETENTION_DAYS": "1"
269
269
  }
270
270
  }
271
271
  }
@@ -276,7 +276,7 @@ Add these environment variables to your MCP configuration:
276
276
 
277
277
  - `SESSION_ENABLED` - Set to `"true"` to enable session management (default: `false`)
278
278
  - `SESSION_DIR` - Where to store session files (default: `.mcp-sessions` in the current working directory)
279
- - `SESSION_RETENTION_DAYS` - How long to keep session history in days (default: 7)
279
+ - `SESSION_RETENTION_DAYS` - How long to keep session files based on last modification time in days (default: 1)
280
280
 
281
281
  **Security consideration:** Session files contain execution history and may include sensitive information. Use absolute paths for `SESSION_DIR`.
282
282
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sub-agents-mcp",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "mcpName": "io.github.shinpr/sub-agents-mcp",
5
5
  "description": "MCP server for delegating tasks to specialized AI assistants in Cursor and other tools",
6
6
  "main": "dist/index.js",