chore: update Docker image for MCP server to feature branch for testing

This commit is contained in:
Daulet Amirkhanov 2025-10-10 14:39:08 +01:00
parent fb03f9ce93
commit 446a378b03

View file

@ -503,7 +503,7 @@ def start_ui(
if start_mcp:
logger.info("Starting Cognee MCP server with Docker...")
try:
image = "cognee/cognee-mcp:main"
image = "cognee/cognee-mcp:feature-standalone-mcp" # TODO: change to main right before merging into main
subprocess.run(["docker", "pull", image], check=True)
import uuid
@ -538,7 +538,9 @@ def start_ui(
env_file = os.path.join(cwd, ".env")
docker_cmd.extend(["--env-file", env_file])
docker_cmd.append("cognee/cognee-mcp:main")
docker_cmd.append(
"cognee/cognee-mcp:feature-standalone-mcp"
) # TODO: change to main right before merging into main
mcp_process = subprocess.Popen(
docker_cmd,