codebase-memory-mcp 0.6.1__tar.gz → 0.8.0__tar.gz
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.
- {codebase_memory_mcp-0.6.1 → codebase_memory_mcp-0.8.0}/.gitignore +3 -0
- {codebase_memory_mcp-0.6.1 → codebase_memory_mcp-0.8.0}/PKG-INFO +3 -1
- {codebase_memory_mcp-0.6.1 → codebase_memory_mcp-0.8.0}/README.md +2 -0
- {codebase_memory_mcp-0.6.1 → codebase_memory_mcp-0.8.0}/pyproject.toml +1 -1
- {codebase_memory_mcp-0.6.1 → codebase_memory_mcp-0.8.0}/src/codebase_memory_mcp/_cli.py +5 -1
- {codebase_memory_mcp-0.6.1 → codebase_memory_mcp-0.8.0}/src/codebase_memory_mcp/__init__.py +0 -0
- {codebase_memory_mcp-0.6.1 → codebase_memory_mcp-0.8.0}/src/codebase_memory_mcp/__main__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codebase-memory-mcp
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.8.0
|
|
4
4
|
Summary: Fast code intelligence engine for AI coding agents — single static binary MCP server
|
|
5
5
|
Project-URL: Homepage, https://github.com/DeusData/codebase-memory-mcp
|
|
6
6
|
Project-URL: Repository, https://github.com/DeusData/codebase-memory-mcp
|
|
@@ -22,6 +22,8 @@ Description-Content-Type: text/markdown
|
|
|
22
22
|
|
|
23
23
|
# codebase-memory-mcp
|
|
24
24
|
|
|
25
|
+
mcp-name: io.github.DeusData/codebase-memory-mcp
|
|
26
|
+
|
|
25
27
|
**Fast code intelligence engine for AI coding agents.** Indexes an average repository in milliseconds, the Linux kernel (28M LOC) in 3 minutes. Answers structural queries in under 1ms.
|
|
26
28
|
|
|
27
29
|
This package installs the `codebase-memory-mcp` binary from [GitHub Releases](https://github.com/DeusData/codebase-memory-mcp/releases). The binary is downloaded on first run and cached in your OS cache directory.
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# codebase-memory-mcp
|
|
2
2
|
|
|
3
|
+
mcp-name: io.github.DeusData/codebase-memory-mcp
|
|
4
|
+
|
|
3
5
|
**Fast code intelligence engine for AI coding agents.** Indexes an average repository in milliseconds, the Linux kernel (28M LOC) in 3 minutes. Answers structural queries in under 1ms.
|
|
4
6
|
|
|
5
7
|
This package installs the `codebase-memory-mcp` binary from [GitHub Releases](https://github.com/DeusData/codebase-memory-mcp/releases). The binary is downloaded on first run and cached in your OS cache directory.
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "codebase-memory-mcp"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.8.0"
|
|
8
8
|
description = "Fast code intelligence engine for AI coding agents — single static binary MCP server"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { text = "MIT" }
|
|
@@ -153,7 +153,11 @@ def _download(version: str) -> Path:
|
|
|
153
153
|
os_name = _os_name()
|
|
154
154
|
arch = _arch()
|
|
155
155
|
ext = "zip" if os_name == "windows" else "tar.gz"
|
|
156
|
-
|
|
156
|
+
# Linux ships a fully-static "-portable" build; the standard linux binary
|
|
157
|
+
# dynamically links glibc 2.38+ and fails on older distros. macOS/Windows
|
|
158
|
+
# have no such variant. Keep in sync with install.sh / install.js / cli.c.
|
|
159
|
+
variant = "-portable" if os_name == "linux" else ""
|
|
160
|
+
archive = f"codebase-memory-mcp-{os_name}-{arch}{variant}.{ext}"
|
|
157
161
|
url = f"https://github.com/{REPO}/releases/download/v{version}/{archive}"
|
|
158
162
|
_validate_url_scheme(url)
|
|
159
163
|
|
|
File without changes
|
|
File without changes
|