@platf/bridge 0.0.29 → 0.0.30

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 +6 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -74,4 +74,10 @@ docker run -p 8000:8000 platf-mcp-bridge \
74
74
  | `--authIssuer` | — | OAuth 2.0 issuer URL (enables auth) |
75
75
  | `--authClientId` | — | OAuth client ID (required if issuer set) |
76
76
 
77
+ ### Session Timeout Notes
78
+
79
+ The `--sessionTimeout` option uses **access counting** — timeouts only fire when all active HTTP requests complete and no new requests arrive within the timeout period. Long-running tool calls are never interrupted.
80
+
81
+ **Edge case**: If the client has a shorter timeout (e.g., 2 minutes) than the tool execution, the client aborts but the bridge session stays alive until the session timeout. The child process continues running and may complete work the client abandoned.
82
+
77
83
  This project was created using `bun init` in bun v1.3.7. [Bun](https://bun.com) is a fast all-in-one JavaScript runtime.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platf/bridge",
3
- "version": "0.0.29",
3
+ "version": "0.0.30",
4
4
  "description": "Stdio-to-Streamable HTTP bridge for MCP servers — Platf AI Hub",
5
5
  "module": "src/index.ts",
6
6
  "main": "dist/index.js",