fastmode-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 +51 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -194,9 +194,59 @@ Add to `~/.codeium/windsurf/mcp_config.json`:
|
|
|
194
194
|
}
|
|
195
195
|
```
|
|
196
196
|
|
|
197
|
+
### For Antigravity IDE
|
|
198
|
+
|
|
199
|
+
Add to `~/.gemini/antigravity/mcp_config.json`:
|
|
200
|
+
|
|
201
|
+
```json
|
|
202
|
+
{
|
|
203
|
+
"mcpServers": {
|
|
204
|
+
"fastmode": {
|
|
205
|
+
"command": "/bin/zsh",
|
|
206
|
+
"args": ["-l", "-c", "npx -y fastmode-mcp"]
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
```
|
|
211
|
+
|
|
212
|
+
> **Note:** Antigravity IDE requires the shell wrapper method because it doesn't load your shell's PATH.
|
|
213
|
+
|
|
214
|
+
### For Other IDEs
|
|
215
|
+
|
|
216
|
+
If your IDE isn't listed above, find your MCP config file and use the shell wrapper method:
|
|
217
|
+
|
|
218
|
+
**macOS/Linux:**
|
|
219
|
+
```json
|
|
220
|
+
{
|
|
221
|
+
"mcpServers": {
|
|
222
|
+
"fastmode": {
|
|
223
|
+
"command": "/bin/zsh",
|
|
224
|
+
"args": ["-l", "-c", "npx -y fastmode-mcp"]
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
```
|
|
229
|
+
|
|
230
|
+
**Windows:**
|
|
231
|
+
```json
|
|
232
|
+
{
|
|
233
|
+
"mcpServers": {
|
|
234
|
+
"fastmode": {
|
|
235
|
+
"command": "cmd",
|
|
236
|
+
"args": ["/c", "npx -y fastmode-mcp"]
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
```
|
|
241
|
+
|
|
242
|
+
Common config file locations:
|
|
243
|
+
- `~/.gemini/antigravity/mcp_config.json` (Antigravity)
|
|
244
|
+
- `~/.config/your-ide/mcp.json`
|
|
245
|
+
- `~/.your-ide/mcp_config.json`
|
|
246
|
+
|
|
197
247
|
### Troubleshooting
|
|
198
248
|
|
|
199
|
-
If the MCP server doesn't start (
|
|
249
|
+
If the MCP server doesn't start (common with custom Node.js installations like nvm/volta/homebrew, or IDEs that don't load your shell's PATH):
|
|
200
250
|
|
|
201
251
|
**Option 1: Use shell wrapper (macOS/Linux)**
|
|
202
252
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fastmode-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "MCP server for FastMode CMS. Convert websites, validate packages, and deploy directly to FastMode. Includes authentication, project creation, schema sync, and one-click deployment.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|