@kineviz/graphxr-mcp 0.2.0 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -24,7 +24,7 @@ MCP (Model Context Protocol) server for [GraphXR](https://graphxr.kineviz.com) -
24
24
 
25
25
  ### 1. Get Your API Key
26
26
 
27
- 1. Log in to [GraphXR](https://graphxr.kineviz.com)
27
+ 1. Log in to GraphXR
28
28
  2. Click your profile icon in the top right
29
29
  3. Select "API Key" from the dropdown
30
30
  4. Copy your API key
@@ -48,7 +48,7 @@ Create or edit `.cursor/mcp.json` in your project or home directory:
48
48
  "mcpServers": {
49
49
  "graphxr": {
50
50
  "command": "npx",
51
- "args": ["-y", "@kineviz/graphxr-mcp"],
51
+ "args": ["-y", "@kineviz/graphxr-mcp", "graphxr-mcp"],
52
52
  "env": {
53
53
  "GRAPHXR_API_KEY": "your-api-key-here",
54
54
  "GRAPHXR_URL": "https://graphxr.kineviz.com"
@@ -67,7 +67,7 @@ Add to your Claude Desktop configuration:
67
67
  "mcpServers": {
68
68
  "graphxr": {
69
69
  "command": "npx",
70
- "args": ["-y", "@kineviz/graphxr-mcp"],
70
+ "args": ["-y", "@kineviz/graphxr-mcp", "graphxr-mcp"],
71
71
  "env": {
72
72
  "GRAPHXR_API_KEY": "your-api-key-here",
73
73
  "GRAPHXR_URL": "https://graphxr.kineviz.com"
@@ -82,7 +82,7 @@ Add to your Claude Desktop configuration:
82
82
  | Variable | Required | Default | Description |
83
83
  |----------|----------|---------|-------------|
84
84
  | `GRAPHXR_API_KEY` | Yes | - | Your GraphXR API key |
85
- | `GRAPHXR_URL` | No | `https://graphxr.kineviz.com` | GraphXR server URL |
85
+ | `GRAPHXR_URL` | No | `http://localhost:9000` | GraphXR server URL |
86
86
  | `HEADLESS` | No | `true` | Run browser in headless mode |
87
87
  | `DEBUG` | No | `false` | Enable debug logging |
88
88
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kineviz/graphxr-mcp",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "MCP server for GraphXR - enables Claude/Cursor to create graph visualizations",
5
5
  "bin": {
6
6
  "graphxr-mcp": "./dist/index.js"