mobbdev 1.0.173 → 1.0.176
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 -1
- package/dist/index.mjs +2729 -179
- package/package.json +8 -2
package/README.md
CHANGED
|
@@ -113,13 +113,19 @@ Add Mobb MCP to your Cursor MCP client configuration:
|
|
|
113
113
|
"args": ["mobbdev", "mcp"],
|
|
114
114
|
"env": {
|
|
115
115
|
"API_KEY": "your_mobb_api_key_here",
|
|
116
|
-
"API_URL": "optional__your_mobb_api_url_here"
|
|
116
|
+
"API_URL": "optional__your_mobb_api_url_here",
|
|
117
|
+
"MVS_AUTO_FIX": "true"
|
|
117
118
|
}
|
|
118
119
|
}
|
|
119
120
|
}
|
|
120
121
|
}
|
|
121
122
|
```
|
|
122
123
|
|
|
124
|
+
**Environment Variables:**
|
|
125
|
+
- `API_KEY`: Your Mobb API key (required)
|
|
126
|
+
- `API_URL`: Custom Mobb API URL (optional, defaults to https://app.mobb.ai)
|
|
127
|
+
- `MVS_AUTO_FIX`: Override auto-fix setting - set to `"true"` or `"false"` to force enable/disable automatic fix application regardless of user's database setting (optional)
|
|
128
|
+
|
|
123
129
|
#### Usage
|
|
124
130
|
|
|
125
131
|
Once configured, you can use the MCP server through your AI assistant:
|