wavescope-mcp 1.0.2 → 1.0.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 +33 -8
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -26,23 +26,46 @@ entire files into context.
|
|
|
26
26
|
|
|
27
27
|
## Installation
|
|
28
28
|
|
|
29
|
+
### From npm (recommended)
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
npm install -g wavescope-mcp
|
|
33
|
+
# or locally in a project:
|
|
34
|
+
npm install wavescope-mcp
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
### From source
|
|
38
|
+
|
|
29
39
|
```bash
|
|
30
|
-
|
|
31
|
-
|
|
40
|
+
git clone <repo-url>
|
|
41
|
+
cd wavescope-mcp
|
|
42
|
+
pnpm install # auto-builds dist/ via prepare script
|
|
32
43
|
```
|
|
33
44
|
|
|
34
45
|
## Usage
|
|
35
46
|
|
|
36
47
|
### Running as MCP server
|
|
37
48
|
|
|
38
|
-
|
|
49
|
+
After global install, just use the binary name:
|
|
50
|
+
|
|
51
|
+
```json
|
|
52
|
+
{
|
|
53
|
+
"mcpServers": {
|
|
54
|
+
"wavescope": {
|
|
55
|
+
"command": "wavescope-mcp"
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
With a local install, use `npx`:
|
|
39
62
|
|
|
40
63
|
```json
|
|
41
64
|
{
|
|
42
65
|
"mcpServers": {
|
|
43
66
|
"wavescope": {
|
|
44
|
-
"command": "
|
|
45
|
-
"args": ["
|
|
67
|
+
"command": "npx",
|
|
68
|
+
"args": ["wavescope-mcp"]
|
|
46
69
|
}
|
|
47
70
|
}
|
|
48
71
|
}
|
|
@@ -91,15 +114,17 @@ Compressed view of a region using specified scale peaks.
|
|
|
91
114
|
## Development
|
|
92
115
|
|
|
93
116
|
```bash
|
|
94
|
-
pnpm install # Install dependencies
|
|
95
|
-
pnpm
|
|
96
|
-
pnpm dev # Run with tsx
|
|
117
|
+
pnpm install # Install dependencies + auto-build dist/
|
|
118
|
+
pnpm dev # Run with tsx (live TypeScript)
|
|
97
119
|
pnpm test # Watch mode
|
|
98
120
|
pnpm test:run # Run tests once
|
|
99
121
|
pnpm test:coverage # Run with coverage
|
|
100
122
|
pnpm typecheck # Type check only
|
|
101
123
|
```
|
|
102
124
|
|
|
125
|
+
`pnpm install` runs the `prepare` script, which builds `dist/` automatically.
|
|
126
|
+
For a manual build, run `pnpm build`.
|
|
127
|
+
|
|
103
128
|
## Architecture
|
|
104
129
|
|
|
105
130
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wavescope-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Wavelet-based multi-resolution context management for MCP",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -9,8 +9,7 @@
|
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"dist",
|
|
12
|
-
"README.md"
|
|
13
|
-
"LICENSE"
|
|
12
|
+
"README.md"
|
|
14
13
|
],
|
|
15
14
|
"keywords": [
|
|
16
15
|
"mcp",
|