graphjin 3.12.0 → 3.13.0
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 +5 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -90,7 +90,7 @@ Copy the JSON config shown and add it to your Claude Desktop config file (see be
|
|
|
90
90
|
GraphJin includes a guided installer that configures MCP for OpenAI Codex, Claude Code, or both.
|
|
91
91
|
|
|
92
92
|
```bash
|
|
93
|
-
# Guided mode (asks target client
|
|
93
|
+
# Guided mode (asks target client and scope)
|
|
94
94
|
graphjin mcp install
|
|
95
95
|
```
|
|
96
96
|
|
|
@@ -110,15 +110,12 @@ graphjin mcp install --client codex --scope project --yes
|
|
|
110
110
|
graphjin mcp install --client claude --scope project --yes
|
|
111
111
|
```
|
|
112
112
|
|
|
113
|
-
Backwards compatibility alias:
|
|
114
|
-
|
|
115
|
-
```bash
|
|
116
|
-
graphjin mcp plugin install
|
|
117
|
-
```
|
|
118
|
-
|
|
119
113
|
#### Troubleshooting
|
|
120
114
|
|
|
121
|
-
- `graphjin mcp install`
|
|
115
|
+
- `graphjin mcp install` defaults to `--server http://localhost:8080/`.
|
|
116
|
+
- Set a custom server URL with `--server`, for example:
|
|
117
|
+
- `graphjin mcp install --client codex --server http://my-host:8080/ --yes`
|
|
118
|
+
- Claude installs use `graphjin mcp --server <url>` under the hood.
|
|
122
119
|
- If Codex CLI does not support `codex mcp add --scope` (older versions), GraphJin automatically falls back to updating:
|
|
123
120
|
- global scope: `~/.codex/config.toml`
|
|
124
121
|
- local scope: `.codex/config.toml`
|