Cyprian Kiplangat —
Hello. I am trying to follow the example in the quickstart But I get errors when I try to install playwright mcp These are the docker logs:
I watched the stream recording for Archestra, and it was actually great. By the way, what projects are you all working on?
/health api endpoint works. But if try to GET /api/organization I see:I'm using the API key at: Settings > Your Account > API Keys > Create API Key
cURLRead-only live mirror of Archestra.AI Slack
👋Join the discussion withAI enthusiasts!docker exec archestra-quickstart kubectl get pods
# Check the pod logs
docker exec archestra-quickstart kubectl logs -l app=mcp-server --tail=100
# Check for events like image pull errors or OOM kills
docker exec archestra-quickstart kubectl describe pods -l app=mcp-server```
(Replace `archestra-quickstart` with your container name if different)docker exec archestra-mcp-control-plane crictl ps -a --name mcp-server
# Step 2: Get logs for the container (replace CONTAINER_ID with the ID from step 1)
docker exec archestra-mcp-control-plane crictl logs CONTAINER_ID```
this will show us whether the mcp server pod is crashing, stuck pulling dependencies, or something else.$ docker exec archestra-mcp-control-plane crictl logs f707e615684de [17:43:36]Listening on <http://localhost:8080>, which tells us the issue. It's binding to localhost (127.0.0.1) instead of 0.0.0.0, so Archestra can't reach it from outside the pod.npx @playwright/mcp@latest without --port runs in stdio mode).0.0.0.0 instead of localhost so the K8s Service can route traffic to it.main branch and it works ok.main branch and then:
docker run -p 9000:9000 -p 3000:3000 \
-e ARCHESTRA_QUICKSTART=true \
-v /var/run/docker.sock:/var/run/docker.sock \
-v archestra-postgres-data:/var/lib/postgresql/data \
-v archestra-app-data:/app/data \
archestra/platform ```
Then you will see in MCP Registry preseeded `microsoft__playwright-mcp` item, install it and you should be good to go.
Let me know in case you encounter any issues with it