@cleocode/mcp-server 0.87.0 → 0.88.0

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 (3) hide show
  1. package/README.md +40 -9
  2. package/package.json +1 -1
  3. package/server.json +2 -2
package/README.md CHANGED
@@ -42,19 +42,23 @@ npm install @cleocode/mcp-server
42
42
 
43
43
  ## Quick Start
44
44
 
45
- ### Running the Server
45
+ ### Option A: Auto-Configure (Recommended)
46
46
 
47
- ```bash
48
- # Via npm
49
- npx cleo-server
47
+ CLEO's CLI auto-detects your installed AI tools and writes configs:
50
48
 
51
- # Or directly
52
- node dist/index.js
49
+ ```bash
50
+ cleo mcp-install # Interactive: detect and configure
51
+ cleo mcp-install --all # Non-interactive: configure all detected tools
52
+ cleo mcp-install --dry-run # Preview changes without writing
53
53
  ```
54
54
 
55
- ### Claude Desktop Configuration
55
+ **Supported tools** (12): Claude Code, Claude Desktop, Cursor, Gemini CLI, Kimi, Antigravity, Windsurf, Goose, OpenCode, VS Code, Zed, Codex
56
+
57
+ See `cleo mcp-install --help` for all options.
56
58
 
57
- Add to your Claude Desktop config (`claude_desktop_config.json`):
59
+ ### Option B: Manual Configuration
60
+
61
+ Add to your tool's MCP config:
58
62
 
59
63
  ```json
60
64
  {
@@ -67,7 +71,34 @@ Add to your Claude Desktop config (`claude_desktop_config.json`):
67
71
  }
68
72
  ```
69
73
 
70
- Or use local installation:
74
+ | Tool | Config Location |
75
+ |------|----------------|
76
+ | Claude Code | `.mcp.json` (project root) |
77
+ | Claude Desktop | `claude_desktop_config.json` (OS-specific) |
78
+ | Cursor | `~/.cursor/mcp.json` |
79
+ | Gemini CLI | `~/.gemini/settings.json` |
80
+ | VS Code | `.vscode/mcp.json` (key: `servers`) |
81
+ | Zed | `~/.config/zed/settings.json` (key: `context_servers`, JSONC) |
82
+ | OpenCode | `~/.config/opencode/.opencode.json` (key: `mcp`, array command, JSONC) |
83
+ | Goose | `.goose/config.yaml` (YAML format) |
84
+ | Codex | `~/.codex/config.toml` (TOML format) |
85
+
86
+ **Goose YAML config example:**
87
+
88
+ ```yaml
89
+ # .goose/config.yaml
90
+ extensions:
91
+ cleo:
92
+ args:
93
+ - -y
94
+ - '@cleocode/mcp-server'
95
+ cmd: npx
96
+ enabled: true
97
+ name: cleo
98
+ type: stdio
99
+ ```
100
+
101
+ For local development installs:
71
102
 
72
103
  ```json
73
104
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cleocode/mcp-server",
3
- "version": "0.87.0",
3
+ "version": "0.88.0",
4
4
  "description": "CLEO MCP Server - 2-gateway CQRS interface for CLEO task management",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/server.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "name": "io.github.kryptobaseddev/cleo-mcp-server",
4
4
  "title": "CLEO MCP Server",
5
5
  "description": "Task management protocol for solo developers and AI coding agents with 2-gateway CQRS pattern",
6
- "version": "0.87.0",
6
+ "version": "0.88.0",
7
7
  "websiteUrl": "https://github.com/kryptobaseddev/cleo",
8
8
  "repository": {
9
9
  "url": "https://github.com/kryptobaseddev/cleo.git",
@@ -14,7 +14,7 @@
14
14
  {
15
15
  "registryType": "npm",
16
16
  "identifier": "@cleocode/mcp-server",
17
- "version": "0.87.0",
17
+ "version": "0.88.0",
18
18
  "transport": {
19
19
  "type": "stdio"
20
20
  },