From 232a65439dad3a51ae1ce89b7c16bbe0d8ce3d9d Mon Sep 17 00:00:00 2001 From: "anthropic-code-agent[bot]" <242468646+Claude@users.noreply.github.com> Date: Fri, 13 Feb 2026 03:42:41 +0000 Subject: [PATCH 1/2] Initial plan From 7265f681522b0486733dbdb7abac86a952dc709e Mon Sep 17 00:00:00 2001 From: "anthropic-code-agent[bot]" <242468646+Claude@users.noreply.github.com> Date: Fri, 13 Feb 2026 03:47:42 +0000 Subject: [PATCH 2/2] Add Python language server to Serena MCP container Install python-lsp-server[all] to enable Python language support in the Serena MCP container. This addresses the issue where Python projects could not be analyzed due to missing language server. Co-authored-by: lpcox <15877973+lpcox@users.noreply.github.com> --- containers/serena-mcp-server/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/containers/serena-mcp-server/Dockerfile b/containers/serena-mcp-server/Dockerfile index 283b5a51..eef63257 100644 --- a/containers/serena-mcp-server/Dockerfile +++ b/containers/serena-mcp-server/Dockerfile @@ -42,6 +42,9 @@ RUN pip install --no-cache-dir git+https://github.com/oraios/serena.git || \ (echo "GitHub installation failed, trying PyPI..." && \ pip install --no-cache-dir serena-agent) +# Install Python language server for Python code analysis +RUN pip install --no-cache-dir python-lsp-server[all] + # Install TypeScript language server (minimal) RUN npm install -g typescript typescript-language-server && \ rm -rf /root/.npm /tmp/*