You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-**`--logLevel debug | info | none`**: Controls logging level (default: `info`). Use `debug` for more verbose logs, `none` to suppress all logs.
29
29
-**`--cors`**: Enable CORS (stdio→SSE or stdio→WS mode). Use `--cors` with no values to allow all origins, or supply one or more allowed origins (e.g. `--cors "http://example.com"` or `--cors "/example\\.com$/"` for regex matching).
30
30
-**`--healthEndpoint /healthz`**: Register one or more endpoints (stdio→SSE or stdio→WS mode; can be used multiple times) that respond with `"ok"`
31
-
-**`--minConcurrency 1`**: Minimum concurrency for stdio server (stdio→SSE; default: `1`).
32
-
-**`--maxConcurrency 10`**: Max concurrency for stdio server (stdio→SSE; default: `1`).
Copy file name to clipboardExpand all lines: src/index.ts
-14Lines changed: 0 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -123,18 +123,6 @@ async function main() {
123
123
description:
124
124
'Session timeout in milliseconds. Only supported for stateful stdio→StreamableHttp. If not set, the session will only be deleted when client transport explicitly terminates the session.',
125
125
})
126
-
.option('minConcurrency',{
127
-
type: 'number',
128
-
default: 1,
129
-
description:
130
-
'Minimum number of concurrent processes (stdio→SSE). Default is 1.',
131
-
})
132
-
.option('maxConcurrency',{
133
-
type: 'number',
134
-
default: 1,
135
-
description:
136
-
'Maximum number of concurrent processes (stdio→SSE). Default is 1.',
0 commit comments