@sammysnake/fast-context-mcp 1.2.0 → 1.2.1
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 +44 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -43,6 +43,18 @@ No need to install ripgrep — it's bundled via `@vscode/ripgrep`.
|
|
|
43
43
|
|
|
44
44
|
## Installation
|
|
45
45
|
|
|
46
|
+
### Option 1: npm (Recommended)
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
# Latest stable release
|
|
50
|
+
npm install @sammysnake/fast-context-mcp
|
|
51
|
+
|
|
52
|
+
# Or beta/next release
|
|
53
|
+
npm install @sammysnake/fast-context-mcp@next
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
### Option 2: From Source
|
|
57
|
+
|
|
46
58
|
```bash
|
|
47
59
|
git clone https://github.com/SammySnake-d/fast-context-mcp.git
|
|
48
60
|
cd fast-context-mcp
|
|
@@ -72,8 +84,22 @@ Add to `~/.claude.json` under `mcpServers`:
|
|
|
72
84
|
```json
|
|
73
85
|
{
|
|
74
86
|
"fast-context": {
|
|
75
|
-
"command": "
|
|
76
|
-
"args": ["/
|
|
87
|
+
"command": "npx",
|
|
88
|
+
"args": ["-y", "--prefer-online", "@sammysnake/fast-context-mcp"],
|
|
89
|
+
"env": {
|
|
90
|
+
"WINDSURF_API_KEY": "sk-ws-01-xxxxx"
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
For beta/next release:
|
|
97
|
+
|
|
98
|
+
```json
|
|
99
|
+
{
|
|
100
|
+
"fast-context": {
|
|
101
|
+
"command": "npx",
|
|
102
|
+
"args": ["-y", "--prefer-online", "@sammysnake/fast-context-mcp@next"],
|
|
77
103
|
"env": {
|
|
78
104
|
"WINDSURF_API_KEY": "sk-ws-01-xxxxx"
|
|
79
105
|
}
|
|
@@ -88,8 +114,22 @@ Add to `claude_desktop_config.json` under `mcpServers`:
|
|
|
88
114
|
```json
|
|
89
115
|
{
|
|
90
116
|
"fast-context": {
|
|
91
|
-
"command": "
|
|
92
|
-
"args": ["/
|
|
117
|
+
"command": "npx",
|
|
118
|
+
"args": ["-y", "--prefer-online", "@sammysnake/fast-context-mcp"],
|
|
119
|
+
"env": {
|
|
120
|
+
"WINDSURF_API_KEY": "sk-ws-01-xxxxx"
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
For beta/next release:
|
|
127
|
+
|
|
128
|
+
```json
|
|
129
|
+
{
|
|
130
|
+
"fast-context": {
|
|
131
|
+
"command": "npx",
|
|
132
|
+
"args": ["-y", "--prefer-online", "@sammysnake/fast-context-mcp@next"],
|
|
93
133
|
"env": {
|
|
94
134
|
"WINDSURF_API_KEY": "sk-ws-01-xxxxx"
|
|
95
135
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sammysnake/fast-context-mcp",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "AI-driven semantic code search via reverse-engineered Windsurf protocol (Node.js)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/server.mjs",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@vscode/ripgrep": "^1.15.9",
|
|
42
42
|
"sql.js": "^1.14.0",
|
|
43
43
|
"tree-node-cli": "^1.6.0",
|
|
44
|
-
"zod": "^3.
|
|
44
|
+
"zod": "^3.25.0"
|
|
45
45
|
},
|
|
46
46
|
"license": "MIT"
|
|
47
47
|
}
|