feat(deps): split cli/server/mcp/seekdb into optional extras#931
Open
wayyoungboy wants to merge 5 commits into
Open
feat(deps): split cli/server/mcp/seekdb into optional extras#931wayyoungboy wants to merge 5 commits into
wayyoungboy wants to merge 5 commits into
Conversation
- pyproject.toml: add [cli], [server], [mcp], [seekdb] optional-dependencies; pin numpy<2.0.0 and greenlet<3.0 for CentOS 7 (GCC 4.8.5) compatibility - src/powermem/cli/main.py: add import guard — exits with install hint if click missing - src/server/cli/server.py: add import guard — exits with install hint if fastapi/uvicorn missing - src/powermem/mcp/: new MCP server module (13 tools) with import guard for fastmcp Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Add [cli], [server], [mcp] install variants to README.md, README_CN.md, README_JP.md Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
After splitting dependencies into optional extras, the Docker image needs `pip install '.[server,seekdb]'` to include server runtime deps.
…ywright greenlet<3.0 conflicts with playwright>=1.40.0 which requires greenlet>=3.0.3. CentOS 7 is EOL; users on legacy systems can pin these versions locally.
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.
Summary
click,fastapi,uvicorn,slowapi,pyseekdbfrom required dependencies to optional extras ([cli],[server],[mcp],[seekdb])powermem-mcpentry point with full MCP server module (13 tools).[server,seekdb]numpy<2.0.0andgreenlet<3.0for CentOS 7 compatibilityInstall usage