@firfi/huly-mcp 0.1.3 → 0.1.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 +58 -15
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -1,10 +1,30 @@
1
1
  # @firfi/huly-mcp
2
2
 
3
- MCP server for Huly integration with Claude Code.
3
+ MCP server for Huly integration.
4
4
 
5
5
  ## Installation
6
6
 
7
- ### Claude Code CLI
7
+ The standard configuration works with most MCP clients:
8
+
9
+ ```json
10
+ {
11
+ "mcpServers": {
12
+ "huly": {
13
+ "command": "npx",
14
+ "args": ["-y", "@firfi/huly-mcp@latest"],
15
+ "env": {
16
+ "HULY_URL": "https://huly.app",
17
+ "HULY_EMAIL": "your@email.com",
18
+ "HULY_PASSWORD": "yourpassword",
19
+ "HULY_WORKSPACE": "yourworkspace"
20
+ }
21
+ }
22
+ }
23
+ }
24
+ ```
25
+
26
+ <details>
27
+ <summary>Claude Code</summary>
8
28
 
9
29
  ```bash
10
30
  claude mcp add huly \
@@ -12,19 +32,34 @@ claude mcp add huly \
12
32
  -e HULY_EMAIL=your@email.com \
13
33
  -e HULY_PASSWORD=yourpassword \
14
34
  -e HULY_WORKSPACE=yourworkspace \
15
- -- npx @firfi/huly-mcp
35
+ -- npx -y @firfi/huly-mcp@latest
16
36
  ```
17
37
 
18
- ### JSON Config
38
+ Or add to `~/.claude.json` using the standard config above.
39
+
40
+ </details>
19
41
 
20
- Add to `~/.claude.json` or `.mcp.json`:
42
+ <details>
43
+ <summary>Claude Desktop</summary>
44
+
45
+ Add the standard config to your `claude_desktop_config.json`:
46
+
47
+ - macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
48
+ - Windows: `%APPDATA%\Claude\claude_desktop_config.json`
49
+
50
+ </details>
51
+
52
+ <details>
53
+ <summary>VS Code</summary>
54
+
55
+ Add to your user settings (`.vscode/mcp.json`) or use Command Palette → "MCP: Add Server":
21
56
 
22
57
  ```json
23
58
  {
24
- "mcpServers": {
59
+ "servers": {
25
60
  "huly": {
26
61
  "command": "npx",
27
- "args": ["@firfi/huly-mcp"],
62
+ "args": ["-y", "@firfi/huly-mcp@latest"],
28
63
  "env": {
29
64
  "HULY_URL": "https://huly.app",
30
65
  "HULY_EMAIL": "your@email.com",
@@ -36,6 +71,22 @@ Add to `~/.claude.json` or `.mcp.json`:
36
71
  }
37
72
  ```
38
73
 
74
+ </details>
75
+
76
+ <details>
77
+ <summary>Cursor</summary>
78
+
79
+ Add the standard config to `~/.cursor/mcp.json`, or via Settings → Tools & Integrations → New MCP Server.
80
+
81
+ </details>
82
+
83
+ <details>
84
+ <summary>Windsurf</summary>
85
+
86
+ Add the standard config to your Windsurf MCP configuration file.
87
+
88
+ </details>
89
+
39
90
  ## Environment Variables
40
91
 
41
92
  | Variable | Required | Description |
@@ -45,11 +96,3 @@ Add to `~/.claude.json` or `.mcp.json`:
45
96
  | `HULY_PASSWORD` | Yes | Account password |
46
97
  | `HULY_WORKSPACE` | Yes | Workspace identifier |
47
98
  | `HULY_CONNECTION_TIMEOUT` | No | Connection timeout in ms (default: 30000) |
48
-
49
- ## Verify
50
-
51
- ```bash
52
- claude mcp list
53
- # or inside Claude Code:
54
- /mcp
55
- ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firfi/huly-mcp",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "MCP server for Huly integration",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -29,7 +29,8 @@
29
29
  "lint:fix": "eslint src --ext .ts --fix"
30
30
  },
31
31
  "bin": {
32
- "huly-mcp": "./dist/index.cjs"
32
+ "huly-mcp": "./dist/index.cjs",
33
+ "@firfi/huly-mcp": "./dist/index.cjs"
33
34
  },
34
35
  "keywords": [],
35
36
  "author": "",