You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix release binary naming and Codex CLI MCP registration
- Release workflow: build binary as `codebase-memory-mcp` (not
`codebase-memory-mcp-<os>-<arch>`) inside tarballs. Users extract
and get the correct name without renaming.
- Codex CLI: replace broken `codex mcp add/remove` calls with direct
config.toml manipulation. Codex uses [mcp_servers.<name>] sections,
not CLI subcommands.
- README: add explicit extract-and-move step to Quick Start.
Copy file name to clipboardExpand all lines: README.md
+8-3Lines changed: 8 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,12 +72,17 @@ Benchmarked on Apple M3 Pro, macOS Darwin 25.3.0:
72
72
## Quick Start
73
73
74
74
1.**Download** the binary for your platform from the [latest release](https://github.com/DeusData/codebase-memory-mcp/releases/latest)
75
-
2.**Install**:
75
+
2.**Extract and move** to a directory on your PATH:
76
+
```bash
77
+
tar xzf codebase-memory-mcp-*.tar.gz
78
+
mv codebase-memory-mcp ~/.local/bin/ # or /usr/local/bin/
79
+
```
80
+
3.**Install**:
76
81
```bash
77
82
codebase-memory-mcp install
78
83
```
79
-
3.**Restart** Claude Code / Codex CLI
80
-
4. Say **"Index this project"** — done.
84
+
4.**Restart** Claude Code / Codex CLI
85
+
5. Say **"Index this project"** — done.
81
86
82
87
The `install` command auto-detects Claude Code and Codex CLI, registers the MCP server, installs 4 task-specific skills, and ensures the binary is on your PATH. Use `--dry-run` to preview without making changes.
0 commit comments