Skip to content

Add pip versioned installation docs for pmll-memory-mcp#50

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

Add pip versioned installation docs for pmll-memory-mcp#50
Copilot wants to merge 2 commits intomainfrom
copilot/update-pmll-memory-mcp-version

Conversation

Copy link
Contributor

Copilot AI commented Mar 10, 2026

pmll-memory-mcp is installable via pip but neither README documented it — leaving users without guidance on version pinning or switching between releases.

Changes

  • mcp/README.md — New ### Via pip (Python ≥ 3.11) section covering:

    • Latest and version-pinned install commands
    • Version-switching pattern (uninstall + reinstall)
    • pmll-memory-mcp / python -m pmll_memory_mcp.server startup commands
    • pip variants of Claude Desktop and VS Code MCP config blocks
  • README.md — Updated PMLL MCP Server installation section with the same pip guidance alongside the existing npm/npx instructions

# Install a specific version
pip install pmll-memory-mcp==0.1.0
pip install pmll-memory-mcp==0.2.0  # replaces 0.1.0

# Switch versions
pip uninstall -y pmll-memory-mcp
pip install pmll-memory-mcp==0.1.0

Claude Desktop config for pip-installed server:

{
  "mcpServers": {
    "pmll-memory-mcp": {
      "command": "pmll-memory-mcp"
    }
  }
}
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

💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot wasn't able to review any files in this pull request.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Co-authored-by: drQedwards <213266729+drQedwards@users.noreply.github.com>
Copilot AI changed the title [WIP] Update pmll-memory-mcp to version 0.2.0 Add pip versioned installation docs 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.

3 participants