tglider 0.1.0-alpha.1 → 0.1.0-alpha.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.
- package/README.md +5 -1
- package/dist/index.js +1 -1
- package/dist/release-metadata.json +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ This package is an alpha release. Alpha builds expire 30 days after their releas
|
|
|
7
7
|
## Requirements
|
|
8
8
|
|
|
9
9
|
- Node.js 24 or newer.
|
|
10
|
-
- An MCP client that can launch stdio servers.
|
|
10
|
+
- An MCP client that can launch stdio servers or connect to Streamable HTTP.
|
|
11
11
|
- A TypeScript or JavaScript workspace using `tsconfig.json`, `jsconfig.json`, or an inferred JS/TS project.
|
|
12
12
|
|
|
13
13
|
## MCP Configuration
|
|
@@ -38,9 +38,13 @@ tglider
|
|
|
38
38
|
tglider --help
|
|
39
39
|
tglider --version
|
|
40
40
|
tglider
|
|
41
|
+
tglider --transport http --port 5002
|
|
42
|
+
tglider --default-timeout 30m
|
|
41
43
|
```
|
|
42
44
|
|
|
43
45
|
Running `tglider` without flags starts the MCP stdio server.
|
|
46
|
+
Running `tglider --transport http` starts Streamable HTTP at `/mcp` and a health endpoint at `/health`.
|
|
47
|
+
`--default-timeout` supports `ms`, `s`, and `m` suffixes. Use `0` to disable server-side tool timeouts.
|
|
44
48
|
|
|
45
49
|
## Tool Overview
|
|
46
50
|
|