tglider 0.1.0-alpha.1 → 0.1.0-alpha.3
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 +7 -3
- 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
|
|
|
@@ -48,10 +52,10 @@ TGlider exposes MCP tools for:
|
|
|
48
52
|
|
|
49
53
|
- workspace loading, project metadata, and package workspace detection
|
|
50
54
|
- file reads, file structure summaries, diagnostics, and diagnostic hotspots
|
|
51
|
-
- semantic symbol search, symbol lookup at position, definitions, declarations, and
|
|
55
|
+
- semantic symbol search, symbol lookup at position, definitions, declarations, references, implementations, and type hierarchies
|
|
52
56
|
- project dependency topology, dependency paths, file dependents, and cycles
|
|
53
57
|
- API/export discovery and compact semantic queries
|
|
54
|
-
- call graph inspection and preview-first rename/refactor planning
|
|
58
|
+
- call graph inspection, cascade impact summaries, and preview-first rename/refactor planning
|
|
55
59
|
- live document open/update/close workflows for editors and agents
|
|
56
60
|
|
|
57
61
|
## Updating Alpha Builds
|