ultipa-mcp 1.0.1 → 1.0.2
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 +39 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,32 +25,57 @@ Need both, or multiple direct instances? Add more entries (see [Multiple targets
|
|
|
25
25
|
|
|
26
26
|
## Install
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
Add an entry under `mcpServers` in your MCP client's config. The same JSON shape works in any stdio MCP client; only the file path differs:
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
| Client | Config file |
|
|
31
|
+
|---|---|
|
|
32
|
+
| Claude Desktop | `claude_desktop_config.json` (Settings → Developer → Edit Config) |
|
|
33
|
+
| Cursor | `~/.cursor/mcp.json` |
|
|
34
|
+
| Windsurf | `~/.codeium/windsurf/mcp_config.json` |
|
|
35
|
+
| VS Code MCP extensions | extension-specific (see the extension's docs) |
|
|
36
|
+
|
|
37
|
+
### One target
|
|
31
38
|
|
|
32
39
|
For an Ultipa Cloud account:
|
|
33
40
|
|
|
34
|
-
```
|
|
35
|
-
|
|
36
|
-
|
|
41
|
+
```json
|
|
42
|
+
{
|
|
43
|
+
"mcpServers": {
|
|
44
|
+
"ultipa-cloud": {
|
|
45
|
+
"command": "npx",
|
|
46
|
+
"args": ["-y", "ultipa-mcp"],
|
|
47
|
+
"env": {
|
|
48
|
+
"ULTIPA_CLOUD_API_KEY": "uc_..."
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
37
53
|
```
|
|
38
54
|
|
|
39
55
|
For a direct instance:
|
|
40
56
|
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
57
|
+
```json
|
|
58
|
+
{
|
|
59
|
+
"mcpServers": {
|
|
60
|
+
"ultipa-direct": {
|
|
61
|
+
"command": "npx",
|
|
62
|
+
"args": ["-y", "ultipa-mcp"],
|
|
63
|
+
"env": {
|
|
64
|
+
"ULTIPA_HOST": "<host>:<port>",
|
|
65
|
+
"ULTIPA_USERNAME": "admin",
|
|
66
|
+
"ULTIPA_PASSWORD": "<password>",
|
|
67
|
+
"ULTIPA_GRAPH": "default"
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
47
72
|
```
|
|
48
73
|
|
|
49
|
-
|
|
74
|
+
Restart your client after editing.
|
|
50
75
|
|
|
51
|
-
|
|
76
|
+
### Multiple targets
|
|
52
77
|
|
|
53
|
-
|
|
78
|
+
Each MCP server entry points at one Ultipa target. Add as many entries as you need, with descriptive names. Claude (or any agent) sees each entry as its own toolset and picks based on what you ask (e.g. "query staging" routes to the `ultipa-staging` entry).
|
|
54
79
|
|
|
55
80
|
```json
|
|
56
81
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ultipa-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Model Context Protocol server for Ultipa Cloud and any self-managed Ultipa GQLDB instance. Operate instances, run GQL, manage backups from any MCP client (Claude Desktop, Cursor, etc.).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|