convex-mcp-visual 1.0.17 → 1.0.18
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 +17 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -39,6 +39,23 @@ export CONVEX_DEPLOY_KEY="prod:your-deployment|your-key"
|
|
|
39
39
|
|
|
40
40
|
Get your deploy key from [dashboard.convex.dev](https://dashboard.convex.dev) under Settings > Deploy Keys.
|
|
41
41
|
|
|
42
|
+
### Switching Deployments
|
|
43
|
+
|
|
44
|
+
If setup still shows the old deployment, another config source is taking priority. The first source found wins. The setup wizard writes `~/.convex-mcp-visual.json`, and that file is only used when earlier sources do not provide a key or url.
|
|
45
|
+
|
|
46
|
+
1. `CONVEX_DEPLOY_KEY` environment variable
|
|
47
|
+
2. `CONVEX_URL` environment variable for the url
|
|
48
|
+
3. `.env.local` for `CONVEX_URL`
|
|
49
|
+
4. `.convex/deployment.json` for `url` and `adminKey`
|
|
50
|
+
5. `~/.convex/config.json` for `accessToken`
|
|
51
|
+
6. `~/.convex-mcp-visual.json` for `deploymentUrl` and `adminKey`
|
|
52
|
+
|
|
53
|
+
Update the source you use, restart your MCP client, then run the test command.
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
npx convex-mcp-visual --test
|
|
57
|
+
```
|
|
58
|
+
|
|
42
59
|
### 3. Test Connection
|
|
43
60
|
|
|
44
61
|
```bash
|