feat(mcp): first docker proxy working

This commit is contained in:
2025-03-23 19:26:47 +01:00
parent 212f271268
commit 0892b6c8c4
4 changed files with 198 additions and 142 deletions

View File

@@ -288,7 +288,7 @@ class ContainerManager:
mcp_names = []
# Ensure MCP is a list
mcps_to_process = mcp or []
mcps_to_process = mcp if isinstance(mcp, list) else []
# Process each MCP
for mcp_name in mcps_to_process: