regen-koi-mcp 1.0.2 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +227 -34
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -144,55 +144,119 @@ regen-koi-mcp/
144
144
 
145
145
  ## 💻 Supported Clients
146
146
 
147
- ### Claude Desktop
147
+ ### Claude Desktop
148
+
149
+ **One-line install:**
150
+ ```bash
151
+ curl -fsSL https://raw.githubusercontent.com/gaiaaiagent/regen-koi-mcp/main/install.sh | bash
152
+ ```
153
+
154
+ Or manually add to config (`~/Library/Application Support/Claude/claude_desktop_config.json` on Mac, `~/.config/Claude/claude_desktop_config.json` on Linux):
155
+ ```json
156
+ {
157
+ "mcpServers": {
158
+ "regen-koi": {
159
+ "command": "npx",
160
+ "args": ["-y", "regen-koi-mcp@latest"],
161
+ "env": {
162
+ "KOI_API_ENDPOINT": "https://regen.gaiaai.xyz/api/koi"
163
+ }
164
+ }
165
+ }
166
+ }
167
+ ```
148
168
 
149
- The setup script automatically configures Claude Desktop. After running `npm run setup`, just restart Claude Desktop and you'll see the tools available.
169
+ ---
150
170
 
151
- ### Claude Code CLI
171
+ ### Claude Code CLI
152
172
 
153
- The setup script automatically configures Claude Code CLI. After running `npm run setup`, just restart Claude Code and you'll see the tools available.
173
+ **One-line install:**
174
+ ```bash
175
+ claude mcp add regen-koi npx -y regen-koi-mcp@latest
176
+ ```
154
177
 
155
- ### VSCode Extensions
178
+ Then set environment variable:
179
+ ```bash
180
+ export KOI_API_ENDPOINT=https://regen.gaiaai.xyz/api/koi
181
+ ```
156
182
 
157
- #### Cline (Claude Dev) ✅
158
- Install from: [VSCode Marketplace](https://marketplace.visualstudio.com/items?itemName=saoudrizwan.claude-dev)
183
+ ---
159
184
 
160
- #### Continue
161
- Install from: [VSCode Marketplace](https://marketplace.visualstudio.com/items?itemName=Continue.continue)
185
+ ### VS Code / VS Code Insiders
162
186
 
163
- The setup script configures both extensions automatically.
187
+ **One-line install:**
188
+ ```bash
189
+ code --add-mcp '{"name":"regen-koi","command":"npx","args":["-y","regen-koi-mcp@latest"],"env":{"KOI_API_ENDPOINT":"https://regen.gaiaai.xyz/api/koi"}}'
190
+ ```
164
191
 
165
- ### Other Clients
192
+ Or for VS Code Insiders:
193
+ ```bash
194
+ code-insiders --add-mcp '{"name":"regen-koi","command":"npx","args":["-y","regen-koi-mcp@latest"],"env":{"KOI_API_ENDPOINT":"https://regen.gaiaai.xyz/api/koi"}}'
195
+ ```
196
+
197
+ ---
166
198
 
167
- Any MCP-compatible client can use this server. Configure with:
199
+ ### Cursor
168
200
 
201
+ **Via Settings:**
202
+ 1. Open Cursor Settings
203
+ 2. Go to MCP section
204
+ 3. Click "Add new MCP Server"
205
+ 4. Enter:
206
+ - Name: `regen-koi`
207
+ - Command: `npx`
208
+ - Args: `-y regen-koi-mcp@latest`
209
+ - Env: `KOI_API_ENDPOINT=https://regen.gaiaai.xyz/api/koi`
210
+
211
+ ---
212
+
213
+ ### Windsurf
214
+
215
+ Add to your Windsurf MCP config:
169
216
  ```json
170
217
  {
171
- "command": "node",
172
- "args": ["/path/to/regen-koi-mcp/dist/index.js"],
173
- "env": {
174
- "KOI_API_ENDPOINT": "https://regen.gaiaai.xyz/api/koi"
218
+ "mcpServers": {
219
+ "regen-koi": {
220
+ "command": "npx",
221
+ "args": ["-y", "regen-koi-mcp@latest"],
222
+ "env": {
223
+ "KOI_API_ENDPOINT": "https://regen.gaiaai.xyz/api/koi"
224
+ }
225
+ }
175
226
  }
176
227
  }
177
228
  ```
178
229
 
179
- ## 🔧 Manual Setup
230
+ ---
180
231
 
181
- ### Claude Desktop
232
+ ### Cline (VS Code Extension)
182
233
 
183
- 1. Find your config file:
184
- - **Mac**: `~/Library/Application Support/Claude/claude_desktop_config.json`
185
- - **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`
186
- - **Linux**: `~/.config/Claude/claude_desktop_config.json`
234
+ Install [Cline from VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=saoudrizwan.claude-dev), then add to Cline's MCP settings:
235
+ ```json
236
+ {
237
+ "mcpServers": {
238
+ "regen-koi": {
239
+ "command": "npx",
240
+ "args": ["-y", "regen-koi-mcp@latest"],
241
+ "env": {
242
+ "KOI_API_ENDPOINT": "https://regen.gaiaai.xyz/api/koi"
243
+ }
244
+ }
245
+ }
246
+ }
247
+ ```
187
248
 
188
- 2. Add the server configuration:
249
+ ---
189
250
 
251
+ ### Continue (VS Code Extension)
252
+
253
+ Install [Continue from VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=Continue.continue), then add to Continue's config:
190
254
  ```json
191
255
  {
192
256
  "mcpServers": {
193
257
  "regen-koi": {
194
- "command": "node",
195
- "args": ["/absolute/path/to/regen-koi-mcp/dist/index.js"],
258
+ "command": "npx",
259
+ "args": ["-y", "regen-koi-mcp@latest"],
196
260
  "env": {
197
261
  "KOI_API_ENDPOINT": "https://regen.gaiaai.xyz/api/koi"
198
262
  }
@@ -201,36 +265,165 @@ Any MCP-compatible client can use this server. Configure with:
201
265
  }
202
266
  ```
203
267
 
204
- 3. Restart Claude Desktop
268
+ ---
269
+
270
+ ### Goose
205
271
 
206
- ### Claude Code CLI
272
+ **Via Settings:**
273
+ 1. Open Advanced settings
274
+ 2. Go to Extensions
275
+ 3. Add MCP server with:
276
+ - Command: `npx`
277
+ - Args: `-y regen-koi-mcp@latest`
278
+ - Env: `KOI_API_ENDPOINT=https://regen.gaiaai.xyz/api/koi`
279
+
280
+ ---
281
+
282
+ ### Warp
283
+
284
+ **Via Settings:**
285
+ 1. Open Settings → AI → Manage MCP Servers
286
+ 2. Add new server
287
+
288
+ Or use slash command:
289
+ ```bash
290
+ /add-mcp regen-koi npx -y regen-koi-mcp@latest
291
+ ```
207
292
 
208
- Run the following command to configure the MCP server:
293
+ ---
294
+
295
+ ### Amp
296
+
297
+ **One-line install:**
298
+ ```bash
299
+ amp mcp add regen-koi -- npx -y regen-koi-mcp@latest
300
+ ```
209
301
 
302
+ ---
303
+
304
+ ### Factory
305
+
306
+ **One-line install:**
210
307
  ```bash
211
- claude mcp add-json regen-koi '{"command":"node","args":["/absolute/path/to/regen-koi-mcp/dist/index.js"],"env":{"KOI_API_ENDPOINT":"https://regen.gaiaai.xyz/api/koi"}}'
308
+ droid mcp add regen-koi "npx -y regen-koi-mcp@latest"
212
309
  ```
213
310
 
214
- Replace `/absolute/path/to/regen-koi-mcp` with the actual path to your installation.
311
+ Or use interactive UI with `/mcp` command.
215
312
 
216
- ### NPX Usage (No Installation)
313
+ ---
217
314
 
218
- You can also run directly from npm:
315
+ ### Codex
219
316
 
317
+ **One-line install:**
318
+ ```bash
319
+ codex mcp add regen-koi npx "-y regen-koi-mcp@latest"
320
+ ```
321
+
322
+ Or manually edit `~/.codex/config.toml`:
323
+ ```toml
324
+ [[mcp.servers]]
325
+ name = "regen-koi"
326
+ command = "npx"
327
+ args = ["-y", "regen-koi-mcp@latest"]
328
+ [mcp.servers.env]
329
+ KOI_API_ENDPOINT = "https://regen.gaiaai.xyz/api/koi"
330
+ ```
331
+
332
+ ---
333
+
334
+ ### Opencode
335
+
336
+ Add to `~/.config/opencode/opencode.json`:
220
337
  ```json
221
338
  {
222
339
  "mcpServers": {
223
340
  "regen-koi": {
224
341
  "command": "npx",
225
- "args": ["-y", "regen-koi-mcp"],
342
+ "args": ["-y", "regen-koi-mcp@latest"],
226
343
  "env": {
227
- "KOI_API_ENDPOINT": "https://regen.gaiaai.xyz/api/koi"
344
+ "KOI_API_ENDPOINT": "https://regen.gaiaai.xyz/api/koi"
228
345
  }
229
346
  }
230
347
  }
231
348
  }
232
349
  ```
233
350
 
351
+ ---
352
+
353
+ ### Kiro
354
+
355
+ Add to `.kiro/settings/mcp.json`:
356
+ ```json
357
+ {
358
+ "mcpServers": {
359
+ "regen-koi": {
360
+ "command": "npx",
361
+ "args": ["-y", "regen-koi-mcp@latest"],
362
+ "env": {
363
+ "KOI_API_ENDPOINT": "https://regen.gaiaai.xyz/api/koi"
364
+ }
365
+ }
366
+ }
367
+ }
368
+ ```
369
+
370
+ ---
371
+
372
+ ### LM Studio
373
+
374
+ **Via Settings:**
375
+ 1. Open Program sidebar
376
+ 2. Go to MCP configuration
377
+ 3. Add server with npx command: `npx -y regen-koi-mcp@latest`
378
+
379
+ ---
380
+
381
+ ### Qodo Gen (VS Code / IntelliJ)
382
+
383
+ **Via Chat Panel:**
384
+ 1. Open Qodo Gen chat
385
+ 2. Click "Connect more tools"
386
+ 3. Add MCP server:
387
+ - Command: `npx`
388
+ - Args: `-y regen-koi-mcp@latest`
389
+ - Env: `KOI_API_ENDPOINT=https://regen.gaiaai.xyz/api/koi`
390
+
391
+ ---
392
+
393
+ ### Gemini CLI
394
+
395
+ Add to Gemini CLI MCP config:
396
+ ```json
397
+ {
398
+ "mcpServers": {
399
+ "regen-koi": {
400
+ "command": "npx",
401
+ "args": ["-y", "regen-koi-mcp@latest"],
402
+ "env": {
403
+ "KOI_API_ENDPOINT": "https://regen.gaiaai.xyz/api/koi"
404
+ }
405
+ }
406
+ }
407
+ }
408
+ ```
409
+
410
+ ---
411
+
412
+ ### Other MCP-Compatible Clients
413
+
414
+ Any MCP-compatible client can use this server with:
415
+
416
+ ```json
417
+ {
418
+ "command": "npx",
419
+ "args": ["-y", "regen-koi-mcp@latest"],
420
+ "env": {
421
+ "KOI_API_ENDPOINT": "https://regen.gaiaai.xyz/api/koi"
422
+ }
423
+ }
424
+ ```
425
+
426
+
234
427
  ## 🌍 Environment Configuration
235
428
 
236
429
  Create a `.env` file in the project root:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "regen-koi-mcp",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "MCP server for accessing Regen Network's KOI (Knowledge Organization Infrastructure) system",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",