seer-mcp 0.1.7 → 0.1.8
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 +30 -24
- package/dist/cli/index.js +139 -168
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/init.d.ts +14 -0
- package/dist/cli/init.d.ts.map +1 -1
- package/dist/cli/init.js +299 -67
- package/dist/cli/init.js.map +1 -1
- package/dist/indexer/discovery.d.ts.map +1 -1
- package/dist/indexer/discovery.js +7 -2
- package/dist/indexer/discovery.js.map +1 -1
- package/dist/indexer/freshness.d.ts.map +1 -1
- package/dist/indexer/freshness.js +26 -1
- package/dist/indexer/freshness.js.map +1 -1
- package/dist/indexer/index.d.ts.map +1 -1
- package/dist/indexer/index.js +28 -9
- package/dist/indexer/index.js.map +1 -1
- package/dist/indexer/protoScanner.d.ts.map +1 -1
- package/dist/indexer/protoScanner.js +43 -6
- package/dist/indexer/protoScanner.js.map +1 -1
- package/dist/indexer/serviceHostScanner.d.ts +7 -7
- package/dist/indexer/serviceHostScanner.d.ts.map +1 -1
- package/dist/indexer/serviceHostScanner.js +41 -25
- package/dist/indexer/serviceHostScanner.js.map +1 -1
- package/dist/indexer/skeleton.js +3 -3
- package/dist/indexer/skeleton.js.map +1 -1
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -36,33 +36,39 @@ Oh, and Seer can absolutely help agents find their way inside large, messy repos
|
|
|
36
36
|
|
|
37
37
|
---
|
|
38
38
|
|
|
39
|
-
## Quick Start
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
```bash
|
|
44
|
-
npx seer-mcp init
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
If you use **Google Antigravity** or **Windsurf** (user-level MCP config), run this instead:
|
|
39
|
+
## Quick Start
|
|
40
|
+
|
|
41
|
+
From inside the repo you want indexed (Node 24+):
|
|
42
|
+
|
|
48
43
|
```bash
|
|
49
|
-
npx seer-mcp init --
|
|
44
|
+
npx seer-mcp init --auto
|
|
50
45
|
```
|
|
51
46
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
47
|
+
That writes repo-local MCP config, adds detected editor-global clients such as Antigravity/Windsurf, and pins global launchers to this repo with `--workspace`.
|
|
48
|
+
|
|
49
|
+
Prefer zero global changes?
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
npx seer-mcp init
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Reload your agent and ask it to call `seer_health`. Seer indexes this repo on the first query.
|
|
56
|
+
|
|
57
|
+
Update existing installs:
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
npx seer-mcp update
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
Avoid first-query latency:
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
npx seer-mcp index .
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
More clients and uninstall details: [MCP Setup](docs/mcp.md).
|
|
70
|
+
|
|
71
|
+
-> [Full Quick Start](docs/quickstart.md)
|
|
66
72
|
---
|
|
67
73
|
|
|
68
74
|
## Docs
|