codedeebee
v0.2.5843
Published
Zig code intelligence MCP server — npx launcher for the codedb native binary
Maintainers
Readme
codedeebee
npm/npx launcher for codedb — a Zig code intelligence MCP server.
The package name is codedeebee (the bare codedb name is restricted on npm). The CLI it installs is named codedb.
Quick start
npx -y codedeebee mcpOr install once:
npm install -g codedeebee
codedb mcpMCP client config
Claude Code / Cursor / opencode
{
"codedb": {
"type": "local",
"command": ["npx", "-y", "codedeebee"],
"args": ["mcp"],
"enabled": true
}
}Claude Desktop
On macOS/Linux:
{
"mcpServers": {
"codedb": {
"command": "npx",
"args": ["-y", "codedeebee", "mcp"]
}
}
}On Windows (once a Windows-capable codedeebee is published — see Supported platforms):
{
"mcpServers": {
"codedb": {
"command": "npx.cmd",
"args": ["-y", "codedeebee", "mcp"]
}
}
}How it works
postinstall downloads the matching native binary from the corresponding GitHub Release and verifies it against checksums.sha256. The codedb command is a thin Node launcher that execs the native binary, preserving cwd, stdio, args, and environment.
Supported platforms
| OS | Arch | |--------|----------------------| | macOS | arm64, x64 (Intel) | | Linux | arm64, x64 | | Windows | x64 (not on the published package yet) |
On Windows, the package downloads codedb-windows-x86_64.exe, installs it as vendor/codedb.exe, and launches it through the same codedb command used on other platforms.
Windows support is wired into the package but is not on npm yet: the currently published codedeebee predates the Windows release asset, so npx -y codedeebee mcp does not work on Windows today. It becomes available once the next release is published — check npm view codedeebee version, and until it reports a Windows-capable release use the checksum-verified PowerShell installer in the root README.
Updating on Windows
Once a Windows-capable codedeebee is published, update through npm:
npm install -g codedeebee@latest
codedb --versionUntil then — and for non-npm Windows installs — binaries older than 0.2.5833 cannot self-update; rerun the checksum-verifying PowerShell installer from the root README. From 0.2.5833 onward codedb update works natively on Windows.
Skipping the binary download
For sandboxed installs (or environments without GitHub access), set CODEDEEBEE_SKIP_POSTINSTALL=1. The package will install successfully but codedb will exit until a binary is placed at node_modules/codedeebee/vendor/codedb (codedb.exe on Windows).
Links
- Source: https://github.com/justrach/codedb
- Issues: https://github.com/justrach/codedb/issues
- Releases: https://github.com/justrach/codedb/releases
