huly-mcp-sdk 0.5.2 → 0.5.3
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 +174 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -53,8 +53,6 @@ Connects **Claude Desktop** (and any [MCP](https://modelcontextprotocol.io)-comp
|
|
|
53
53
|
|
|
54
54
|
## Quick Start
|
|
55
55
|
|
|
56
|
-
### 1. Install via npx (easiest)
|
|
57
|
-
|
|
58
56
|
```bash
|
|
59
57
|
npx huly-mcp-sdk setup
|
|
60
58
|
```
|
|
@@ -63,9 +61,15 @@ This runs the interactive setup wizard — sends a one-time code to your email (
|
|
|
63
61
|
|
|
64
62
|
**Your workspace slug** is the part of your Huly URL after the domain: `huly.app/`**`myteam`** → slug is `myteam`.
|
|
65
63
|
|
|
66
|
-
|
|
64
|
+
---
|
|
65
|
+
|
|
66
|
+
## Compatible Clients
|
|
67
|
+
|
|
68
|
+
The same MCP server works across all major AI coding tools. Pick your client:
|
|
67
69
|
|
|
68
|
-
|
|
70
|
+
---
|
|
71
|
+
|
|
72
|
+
### Claude Desktop
|
|
69
73
|
|
|
70
74
|
- **macOS:** `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
71
75
|
- **Windows:** `%APPDATA%\Claude\claude_desktop_config.json`
|
|
@@ -77,7 +81,7 @@ Add this to your Claude Desktop config:
|
|
|
77
81
|
"command": "npx",
|
|
78
82
|
"args": ["huly-mcp-sdk"],
|
|
79
83
|
"env": {
|
|
80
|
-
"HULY_TOKEN": "
|
|
84
|
+
"HULY_TOKEN": "your-token",
|
|
81
85
|
"HULY_WORKSPACE": "your-workspace-slug"
|
|
82
86
|
}
|
|
83
87
|
}
|
|
@@ -87,12 +91,175 @@ Add this to your Claude Desktop config:
|
|
|
87
91
|
|
|
88
92
|
Restart Claude Desktop after saving.
|
|
89
93
|
|
|
90
|
-
|
|
94
|
+
---
|
|
95
|
+
|
|
96
|
+
### Claude Code (CLI)
|
|
97
|
+
|
|
98
|
+
```bash
|
|
99
|
+
claude mcp add huly -e HULY_TOKEN=your-token -e HULY_WORKSPACE=your-slug -- npx huly-mcp-sdk
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
Or scope it to a single project only:
|
|
103
|
+
|
|
104
|
+
```bash
|
|
105
|
+
claude mcp add huly --scope project -e HULY_TOKEN=your-token -e HULY_WORKSPACE=your-slug -- npx huly-mcp-sdk
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
Verify it's connected: `claude mcp list`
|
|
109
|
+
|
|
110
|
+
---
|
|
111
|
+
|
|
112
|
+
### Cursor
|
|
113
|
+
|
|
114
|
+
Create or edit `~/.cursor/mcp.json`:
|
|
115
|
+
|
|
116
|
+
```json
|
|
117
|
+
{
|
|
118
|
+
"mcpServers": {
|
|
119
|
+
"huly": {
|
|
120
|
+
"command": "npx",
|
|
121
|
+
"args": ["huly-mcp-sdk"],
|
|
122
|
+
"env": {
|
|
123
|
+
"HULY_TOKEN": "your-token",
|
|
124
|
+
"HULY_WORKSPACE": "your-workspace-slug"
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
Restart Cursor. The tools appear in the Agent panel under MCP.
|
|
132
|
+
|
|
133
|
+
---
|
|
134
|
+
|
|
135
|
+
### Windsurf (Codeium)
|
|
136
|
+
|
|
137
|
+
Create or edit `~/.codeium/windsurf/mcp_config.json`:
|
|
138
|
+
|
|
139
|
+
```json
|
|
140
|
+
{
|
|
141
|
+
"mcpServers": {
|
|
142
|
+
"huly": {
|
|
143
|
+
"command": "npx",
|
|
144
|
+
"args": ["huly-mcp-sdk"],
|
|
145
|
+
"env": {
|
|
146
|
+
"HULY_TOKEN": "your-token",
|
|
147
|
+
"HULY_WORKSPACE": "your-workspace-slug"
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
Restart Windsurf. MCP tools are available to the Cascade AI panel.
|
|
155
|
+
|
|
156
|
+
---
|
|
157
|
+
|
|
158
|
+
### VS Code — Cline extension
|
|
159
|
+
|
|
160
|
+
1. Install the [Cline extension](https://marketplace.visualstudio.com/items?itemName=saoudrizwan.claude-dev)
|
|
161
|
+
2. Open Cline settings → **MCP Servers** → **Edit MCP Settings**
|
|
162
|
+
3. Add:
|
|
163
|
+
|
|
164
|
+
```json
|
|
165
|
+
{
|
|
166
|
+
"huly": {
|
|
167
|
+
"command": "npx",
|
|
168
|
+
"args": ["huly-mcp-sdk"],
|
|
169
|
+
"env": {
|
|
170
|
+
"HULY_TOKEN": "your-token",
|
|
171
|
+
"HULY_WORKSPACE": "your-workspace-slug"
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
---
|
|
178
|
+
|
|
179
|
+
### VS Code — Continue extension
|
|
180
|
+
|
|
181
|
+
1. Install the [Continue extension](https://marketplace.visualstudio.com/items?itemName=Continue.continue)
|
|
182
|
+
2. Edit `~/.continue/config.json` and add to the `mcpServers` array:
|
|
183
|
+
|
|
184
|
+
```json
|
|
185
|
+
{
|
|
186
|
+
"mcpServers": [
|
|
187
|
+
{
|
|
188
|
+
"name": "huly",
|
|
189
|
+
"command": "npx",
|
|
190
|
+
"args": ["huly-mcp-sdk"],
|
|
191
|
+
"env": {
|
|
192
|
+
"HULY_TOKEN": "your-token",
|
|
193
|
+
"HULY_WORKSPACE": "your-workspace-slug"
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
]
|
|
197
|
+
}
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
---
|
|
201
|
+
|
|
202
|
+
### Zed
|
|
203
|
+
|
|
204
|
+
Edit `~/.config/zed/settings.json` and add a `context_servers` entry:
|
|
205
|
+
|
|
206
|
+
```json
|
|
207
|
+
{
|
|
208
|
+
"context_servers": {
|
|
209
|
+
"huly": {
|
|
210
|
+
"command": {
|
|
211
|
+
"path": "npx",
|
|
212
|
+
"args": ["huly-mcp-sdk"],
|
|
213
|
+
"env": {
|
|
214
|
+
"HULY_TOKEN": "your-token",
|
|
215
|
+
"HULY_WORKSPACE": "your-workspace-slug"
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
```
|
|
222
|
+
|
|
223
|
+
---
|
|
224
|
+
|
|
225
|
+
### OpenAI Codex CLI
|
|
226
|
+
|
|
227
|
+
Edit `~/.codex/config.json` and add to `mcpServers`:
|
|
228
|
+
|
|
229
|
+
```json
|
|
230
|
+
{
|
|
231
|
+
"mcpServers": {
|
|
232
|
+
"huly": {
|
|
233
|
+
"type": "stdio",
|
|
234
|
+
"command": "npx",
|
|
235
|
+
"args": ["huly-mcp-sdk"],
|
|
236
|
+
"env": {
|
|
237
|
+
"HULY_TOKEN": "your-token",
|
|
238
|
+
"HULY_WORKSPACE": "your-workspace-slug"
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
```
|
|
244
|
+
|
|
245
|
+
---
|
|
246
|
+
|
|
247
|
+
### Any other MCP-compatible client
|
|
248
|
+
|
|
249
|
+
The server uses standard **stdio transport**. If your tool supports MCP, the config pattern is always the same:
|
|
250
|
+
|
|
251
|
+
- **command:** `npx`
|
|
252
|
+
- **args:** `["huly-mcp-sdk"]`
|
|
253
|
+
- **env:** `HULY_TOKEN` + `HULY_WORKSPACE`
|
|
254
|
+
|
|
255
|
+
Consult your tool's MCP documentation for the exact config file location.
|
|
256
|
+
|
|
257
|
+
> **Alternative (avoid npx cold-start):** Clone and build once, then point directly at the compiled binary:
|
|
91
258
|
> ```bash
|
|
92
259
|
> git clone https://github.com/varaprasadreddy9676/huly-mcp.git
|
|
93
260
|
> cd huly-mcp && npm install && npm run build
|
|
94
261
|
> ```
|
|
95
|
-
>
|
|
262
|
+
> Replace `"command": "npx", "args": ["huly-mcp-sdk"]` with `"command": "node", "args": ["/absolute/path/to/huly-mcp/dist/index.js"]` in any config above.
|
|
96
263
|
|
|
97
264
|
---
|
|
98
265
|
|