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.
Files changed (2) hide show
  1. package/README.md +39 -14
  2. 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
- ### One target via install-mcp
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
- Replace `claude` with your client: `cursor`, `windsurf`, `vscode`, `cline`, etc.
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
- ```bash
35
- npx -y install-mcp@latest ultipa-mcp --client claude \
36
- --env ULTIPA_CLOUD_API_KEY=uc_...
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
- ```bash
42
- npx -y install-mcp@latest ultipa-mcp --client claude \
43
- --env ULTIPA_HOST=<host>:<port> \
44
- --env ULTIPA_USERNAME=admin \
45
- --env ULTIPA_PASSWORD=<password> \
46
- --env ULTIPA_GRAPH=default
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
- ### Multiple targets
74
+ Restart your client after editing.
50
75
 
51
- Each MCP server entry in your client's config 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).
76
+ ### Multiple targets
52
77
 
53
- The same JSON shape works in any stdio MCP client; only the file path differs (Claude Desktop: `claude_desktop_config.json` via Settings Developer Edit Config; Cursor: `~/.cursor/mcp.json`; Windsurf, VS Code MCP extensions: see their docs).
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.1",
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",