Skip to content

docs: add pip version-pinning installation instructions for pmll-memory-mcp#49

Draft
Copilot wants to merge 2 commits intomainfrom
copilot/install-specific-version-pmll-memory-mcp
Draft

docs: add pip version-pinning installation instructions for pmll-memory-mcp#49
Copilot wants to merge 2 commits intomainfrom
copilot/install-specific-version-pmll-memory-mcp

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Mar 10, 2026

The installation docs only covered npm/npx; there were no pip instructions despite pmll-memory-mcp being published to PyPI as a Python package.

Changes

  • README.md / mcp/README.md — Added pip installation block covering latest, pinned versions, and version-switching workflow:

    pip install pmll-memory-mcp           # latest
    
    # Pin to a specific version (choose one)
    pip install pmll-memory-mcp==0.1.0
    # OR
    pip install pmll-memory-mcp==0.2.0
    
    # Switch versions
    pip uninstall -y pmll-memory-mcp
    pip install pmll-memory-mcp==0.1.0

    Includes a callout clarifying that running both version installs leaves you on the later one.

  • server.json — Added a pypi entry to packages[] alongside the existing npm entry so the MCP Registry reflects both distribution channels.

Original prompt

To install a specific version, run one command at a time:

pip install pmll-memory-mcp==0.1.0
pip install pmll-memory-mcp==0.2.0

Notes:

  • If you run both, the second command will upgrade/replace 0.1.0 with 0.2.0 (so you’ll end up on 0.2.0).
  • To switch versions, explicitly install the version you want (or uninstall first):
    pip uninstall -y pmll-memory-mcp
    pip install pmll-memory-mcp==0.1.0

🔒 GitHub Advanced Security automatically protects Copilot coding agent pull requests. You can protect all pull requests by enabling Advanced Security for your repositories. Learn more about Advanced Security.

…-memory-mcp

Co-authored-by: drQedwards <213266729+drQedwards@users.noreply.github.com>
Copilot AI changed the title [WIP] Add installation instructions for pmll-memory-mcp versions docs: add pip version-pinning installation instructions for pmll-memory-mcp Mar 10, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants