@cleocode/mcp-server 0.87.1 → 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.
- package/README.md +40 -9
- package/package.json +1 -1
- 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
|
-
###
|
|
45
|
+
### Option A: Auto-Configure (Recommended)
|
|
46
46
|
|
|
47
|
-
|
|
48
|
-
# Via npm
|
|
49
|
-
npx cleo-server
|
|
47
|
+
CLEO's CLI auto-detects your installed AI tools and writes configs:
|
|
50
48
|
|
|
51
|
-
|
|
52
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
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.
|
|
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.
|
|
17
|
+
"version": "0.88.0",
|
|
18
18
|
"transport": {
|
|
19
19
|
"type": "stdio"
|
|
20
20
|
},
|