@bgx4k3p/huly-mcp-server 2.0.0 → 2.0.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 +29 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -66,7 +66,25 @@ The token does not expire. You can store it in a secrets manager or
66
66
 
67
67
  ### Claude Code (MCP)
68
68
 
69
- Add to your `.mcp.json`:
69
+ Add to your `.mcp.json` (token auth — recommended):
70
+
71
+ ```json
72
+ {
73
+ "mcpServers": {
74
+ "huly": {
75
+ "command": "node",
76
+ "args": ["path/to/huly-mcp-server/src/index.mjs"],
77
+ "env": {
78
+ "HULY_URL": "https://your-huly-instance.com",
79
+ "HULY_TOKEN": "${HULY_TOKEN}",
80
+ "HULY_WORKSPACE": "${HULY_WORKSPACE}"
81
+ }
82
+ }
83
+ }
84
+ }
85
+ ```
86
+
87
+ Or with email/password:
70
88
 
71
89
  ```json
72
90
  {
@@ -126,6 +144,15 @@ OpenAPI spec available at `GET /api/openapi.json` for auto-discovery in n8n and
126
144
  ```bash
127
145
  docker build -t huly-mcp-server .
128
146
 
147
+ # With token (recommended)
148
+ docker run -d \
149
+ -p 3001:3001 \
150
+ -e HULY_URL=https://your-huly-instance.com \
151
+ -e HULY_TOKEN=your-token \
152
+ -e HULY_WORKSPACE=my-workspace \
153
+ huly-mcp-server
154
+
155
+ # With email/password
129
156
  docker run -d \
130
157
  -p 3001:3001 \
131
158
  -e HULY_URL=https://your-huly-instance.com \
@@ -140,8 +167,7 @@ For MCP stdio mode in Docker:
140
167
  ```bash
141
168
  docker run -i \
142
169
  -e HULY_URL=https://your-huly-instance.com \
143
- -e HULY_EMAIL=admin@example.com \
144
- -e HULY_PASSWORD=secret \
170
+ -e HULY_TOKEN=your-token \
145
171
  -e HULY_WORKSPACE=my-workspace \
146
172
  huly-mcp-server node src/mcp.mjs
147
173
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bgx4k3p/huly-mcp-server",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "MCP and HTTP REST server for Huly issue tracking with multi-workspace support",
5
5
  "type": "module",
6
6
  "license": "MIT",