graphjin 3.12.0 → 3.14.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.
Files changed (2) hide show
  1. package/README.md +7 -10
  2. 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, scope, and mode)
93
+ # Guided mode (asks target client and scope)
94
94
  graphjin mcp install
95
95
  ```
96
96
 
@@ -99,7 +99,7 @@ graphjin mcp install
99
99
  <img src="website/public/logos/openai-codex.svg" alt="OpenAI Codex logo" width="280">
100
100
 
101
101
  ```bash
102
- graphjin mcp install --client codex --scope project --yes
102
+ graphjin mcp install --client codex --scope global --yes
103
103
  ```
104
104
 
105
105
  #### Claude Code
@@ -107,18 +107,15 @@ graphjin mcp install --client codex --scope project --yes
107
107
  <img src="website/public/logos/claude-code.svg" alt="Claude Code logo" width="280">
108
108
 
109
109
  ```bash
110
- graphjin mcp install --client claude --scope project --yes
111
- ```
112
-
113
- Backwards compatibility alias:
114
-
115
- ```bash
116
- graphjin mcp plugin install
110
+ graphjin mcp install --client claude --scope global --yes
117
111
  ```
118
112
 
119
113
  #### Troubleshooting
120
114
 
121
- - `graphjin mcp install` uses your `--path` value for stdio mode (`graphjin mcp --path <config-path>`).
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`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphjin",
3
- "version": "3.12.0",
3
+ "version": "3.14.0",
4
4
  "description": "GraphJin CLI - Build APIs in 5 minutes with GraphQL",
5
5
  "bin": {
6
6
  "graphjin": "bin/graphjin.js"