fix: remove stale memu-server script entry point (fixes #393)#403
Open
octo-patch wants to merge 1 commit intoNevaMind-AI:mainfrom
Open
fix: remove stale memu-server script entry point (fixes #393)#403octo-patch wants to merge 1 commit intoNevaMind-AI:mainfrom
octo-patch wants to merge 1 commit intoNevaMind-AI:mainfrom
Conversation
The memu.server package was removed in the v1.5.0 refactor but the [project.scripts] entry pointing to memu.server.cli:main was left in pyproject.toml. This causes ModuleNotFoundError when users install the package and try to run memu-server, contributing to the confusion described in NevaMind-AI#393 where users still see references to the deprecated server architecture. Removing the entry entirely is consistent with the v1.5.x design where the MemoryService API replaces the old server-based retrieval approach.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #393
Problem
pyproject.tomlstill declares a[project.scripts]entry:But
memu.server.cliwas removed in the v1.5.0 refactor. Installingmemu-pyand runningmemu-serverproduces:This is one of the contributing factors to the confusion in #393, where users installing
memu-pyfrom PyPI encounter a brokenmemu-servercommand and stale references to the oldRecallAgent/memu.serverarchitecture.Solution
Remove the
[project.scripts]section frompyproject.toml. The v1.5.x architecture exposes memory operations through theMemoryServicePython API directly — there is no longer a standalone server CLI to ship.Testing
memu-serverentry is gone frompyproject.tomlmemu.servermodule was created; the removal is intentional and consistent with the v1.5.x designRelated
Also related to #354 (same broken entry point, different issue context).