@voxos-ai/clink-mcp-server 0.4.1 → 0.4.2
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 +6 -2
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -312,7 +312,7 @@ Add Clink instructions to your project's `CLAUDE.md` for automatic behavior:
|
|
|
312
312
|
### Building from Source
|
|
313
313
|
|
|
314
314
|
```bash
|
|
315
|
-
git clone https://github.com/
|
|
315
|
+
git clone https://github.com/Voxos-ai-Inc/clink-mcp-server
|
|
316
316
|
cd clink-mcp-server
|
|
317
317
|
npm install
|
|
318
318
|
npm run build
|
|
@@ -354,6 +354,10 @@ You're using a group-scoped key (`sk_live_g_...`) to access a different group. E
|
|
|
354
354
|
2. Check your tool's logs for MCP startup errors
|
|
355
355
|
3. Verify JSON syntax in your MCP configuration file
|
|
356
356
|
|
|
357
|
+
## See Also
|
|
358
|
+
|
|
359
|
+
- **[Python version](https://github.com/Voxos-ai-Inc/clink-mcp-server-python)** - `clink-mcp-server` on PyPI
|
|
360
|
+
|
|
357
361
|
## What's Open Source
|
|
358
362
|
|
|
359
363
|
This MCP server is fully open source (MIT license). It contains:
|
|
@@ -375,7 +379,7 @@ You can inspect every line of code that runs on your machine.
|
|
|
375
379
|
- [Clink Website](https://clink.voxos.ai)
|
|
376
380
|
- [Documentation](https://docs.clink.voxos.ai)
|
|
377
381
|
- [Web Dashboard](https://app.clink.voxos.ai)
|
|
378
|
-
- [GitHub Issues](https://github.com/
|
|
382
|
+
- [GitHub Issues](https://github.com/Voxos-ai-Inc/clink-mcp-server/issues)
|
|
379
383
|
|
|
380
384
|
## License
|
|
381
385
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voxos-ai/clink-mcp-server",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "MCP server for Clink - powering agentic coordination",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
|
-
"clink-mcp": "dist/index.js"
|
|
8
|
+
"clink-mcp": "dist/index.js",
|
|
9
|
+
"clink-mcp-server": "dist/index.js"
|
|
9
10
|
},
|
|
10
11
|
"scripts": {
|
|
11
12
|
"build": "tsc",
|