graphjin 3.10.6 → 3.11.1
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 +38 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -84,6 +84,44 @@ Copy the JSON config shown and add it to your Claude Desktop config file (see be
|
|
|
84
84
|
| macOS | `~/Library/Application Support/Claude/claude_desktop_config.json` |
|
|
85
85
|
| Windows | `%APPDATA%\Claude\claude_desktop_config.json` |
|
|
86
86
|
|
|
87
|
+
### MCP install for OpenAI Codex + Claude Code
|
|
88
|
+
|
|
89
|
+
GraphJin includes a guided installer that configures MCP for OpenAI Codex, Claude Code, or both.
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
# Guided mode (asks target client, scope, and mode)
|
|
93
|
+
graphjin mcp install
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
#### OpenAI Codex
|
|
97
|
+
|
|
98
|
+
<img src="website/public/logos/openai-codex.svg" alt="OpenAI Codex logo" width="280">
|
|
99
|
+
|
|
100
|
+
```bash
|
|
101
|
+
graphjin mcp install --client codex --scope project --yes
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
#### Claude Code
|
|
105
|
+
|
|
106
|
+
<img src="website/public/logos/claude-code.svg" alt="Claude Code logo" width="280">
|
|
107
|
+
|
|
108
|
+
```bash
|
|
109
|
+
graphjin mcp install --client claude --scope project --yes
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
Backwards compatibility alias:
|
|
113
|
+
|
|
114
|
+
```bash
|
|
115
|
+
graphjin mcp plugin install
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
#### Troubleshooting
|
|
119
|
+
|
|
120
|
+
- `graphjin mcp install` uses your `--path` value for stdio mode (`graphjin mcp --path <config-path>`).
|
|
121
|
+
- If Codex CLI does not support `codex mcp add --scope` (older versions), GraphJin automatically falls back to updating:
|
|
122
|
+
- global scope: `~/.codex/config.toml`
|
|
123
|
+
- local scope: `.codex/config.toml`
|
|
124
|
+
|
|
87
125
|
## Getting started
|
|
88
126
|
|
|
89
127
|
To use GraphJin with your own databases you have to first create a new GraphJin app, then configure it using its config files and then launch GraphJin.
|