graphjin 3.2.4 → 3.2.5

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 +11 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -42,8 +42,8 @@ docker pull dosco/graphjin
42
42
 
43
43
  ```bash
44
44
  # With Claude Desktop - run the demo
45
- graphjin mcp demo --path examples/webshop/config
46
- graphjin mcp demo info # Copy output to Claude Desktop config
45
+ graphjin mcp --demo --path examples/webshop/config
46
+ graphjin mcp info --demo # Copy output to Claude Desktop config
47
47
 
48
48
  # With your own database
49
49
  graphjin mcp --path /path/to/config
@@ -96,12 +96,12 @@ Within minutes, ask Claude: "What products do we have?" or "Show me orders from
96
96
 
97
97
  1. **Start the demo**
98
98
  ```bash
99
- graphjin mcp demo --path examples/webshop/config
99
+ graphjin mcp --demo --path examples/webshop/config
100
100
  ```
101
101
 
102
102
  2. **Get config and add to Claude Desktop**
103
103
  ```bash
104
- graphjin mcp demo info --path examples/webshop/config
104
+ graphjin mcp info --demo --path examples/webshop/config
105
105
  ```
106
106
 
107
107
  3. **Ask Claude questions like:**
@@ -229,19 +229,22 @@ graphjin mcp --path /path/to/config
229
229
  graphjin mcp info
230
230
 
231
231
  # Run with temporary database container
232
- graphjin mcp demo --path examples/webshop/config
232
+ graphjin mcp --demo --path examples/webshop/config
233
233
 
234
234
  # Show demo mode config JSON
235
- graphjin mcp demo info
235
+ graphjin mcp info --demo
236
236
 
237
237
  # Keep data between restarts
238
- graphjin mcp demo --persist
238
+ graphjin mcp --demo --persist
239
239
 
240
240
  # Override database type
241
- graphjin mcp demo --db mysql
241
+ graphjin mcp --demo --db mysql
242
242
 
243
243
  # Set auth context
244
244
  graphjin mcp --user-id admin --user-role admin
245
+
246
+ # HTTP server with demo database
247
+ graphjin serve --demo --path examples/webshop/config
245
248
  ```
246
249
 
247
250
  **Claude Desktop config** (`claude_desktop_config.json`):
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphjin",
3
- "version": "3.2.4",
3
+ "version": "3.2.5",
4
4
  "description": "GraphJin CLI - Build APIs in 5 minutes with GraphQL",
5
5
  "bin": {
6
6
  "graphjin": "bin/graphjin.js"