huly-mcp-sdk 0.5.3 → 0.5.4
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 +21 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -65,7 +65,15 @@ This runs the interactive setup wizard — sends a one-time code to your email (
|
|
|
65
65
|
|
|
66
66
|
## Compatible Clients
|
|
67
67
|
|
|
68
|
-
The same MCP server works across all major AI coding tools. Pick your client
|
|
68
|
+
The same MCP server works across all major AI coding tools. Pick your client.
|
|
69
|
+
|
|
70
|
+
> **Auth note:** All config examples below use `HULY_TOKEN`. If you have issues with token expiry, use email + password instead — just replace the `env` block with:
|
|
71
|
+
> ```json
|
|
72
|
+
> "HULY_EMAIL": "your@email.com",
|
|
73
|
+
> "HULY_PASSWORD": "yourpassword",
|
|
74
|
+
> "HULY_WORKSPACE": "your-workspace-slug"
|
|
75
|
+
> ```
|
|
76
|
+
> See [Manual Auth](#manual-auth) for details on both options.
|
|
69
77
|
|
|
70
78
|
---
|
|
71
79
|
|
|
@@ -379,29 +387,29 @@ Required column: `title`. Optional: `priority` (Urgent/High/Medium/Low), `status
|
|
|
379
387
|
|
|
380
388
|
## Manual Auth
|
|
381
389
|
|
|
382
|
-
Create a `.env` file in the project root:
|
|
390
|
+
Create a `.env` file in the project root (or pass via `env` in your client config):
|
|
383
391
|
|
|
384
|
-
**Option A —
|
|
392
|
+
**Option A — Email + password (recommended):**
|
|
393
|
+
|
|
394
|
+
Works if you have a password set on your Huly account (Profile → Security → Change password).
|
|
385
395
|
|
|
386
396
|
```bash
|
|
397
|
+
HULY_EMAIL=your@email.com
|
|
398
|
+
HULY_PASSWORD=yourpassword
|
|
387
399
|
HULY_WORKSPACE=your-workspace-slug
|
|
388
|
-
HULY_TOKEN=your-token-here
|
|
389
400
|
```
|
|
390
401
|
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
> Tokens expire after some time. If you get an auth error, run `npx huly-mcp-sdk setup` again or refresh the token from DevTools.
|
|
394
|
-
|
|
395
|
-
**Option B — Email + password:**
|
|
396
|
-
|
|
397
|
-
Only works if you have a password set on your account (Profile → Security → Change password).
|
|
402
|
+
**Option B — Token:**
|
|
398
403
|
|
|
399
404
|
```bash
|
|
400
|
-
HULY_EMAIL=your@email.com
|
|
401
|
-
HULY_PASSWORD=yourpassword
|
|
402
405
|
HULY_WORKSPACE=your-workspace-slug
|
|
406
|
+
HULY_TOKEN=your-token-here
|
|
403
407
|
```
|
|
404
408
|
|
|
409
|
+
To get a token: go to [huly.app](https://huly.app) → open browser DevTools → Application → Local Storage → `https://huly.app` → copy the `token` value.
|
|
410
|
+
|
|
411
|
+
> Tokens expire after some time. If you get an auth error, switch to email + password auth or refresh the token from DevTools.
|
|
412
|
+
|
|
405
413
|
**Self-hosted Huly:**
|
|
406
414
|
|
|
407
415
|
```bash
|