Skip to main content
Glama

@arizeai/phoenix-mcp

Official
by Arize-ai
x11vnc_startup.sh957 B
#!/bin/bash echo "starting vnc" (x11vnc -display $DISPLAY \ -forever \ -shared \ -wait 50 \ -rfbport 5900 \ -nopw \ 2>/tmp/x11vnc_stderr.log) & x11vnc_pid=$! # Wait for x11vnc to start timeout=10 while [ $timeout -gt 0 ]; do if netstat -tuln | grep -q ":5900 "; then break fi sleep 1 ((timeout--)) done if [ $timeout -eq 0 ]; then echo "x11vnc failed to start, stderr output:" >&2 cat /tmp/x11vnc_stderr.log >&2 exit 1 fi : > /tmp/x11vnc_stderr.log # Monitor x11vnc process in the background ( while true; do if ! kill -0 $x11vnc_pid 2>/dev/null; then echo "x11vnc process crashed, restarting..." >&2 if [ -f /tmp/x11vnc_stderr.log ]; then echo "x11vnc stderr output:" >&2 cat /tmp/x11vnc_stderr.log >&2 rm /tmp/x11vnc_stderr.log fi exec "$0" fi sleep 5 done ) &

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Arize-ai/phoenix'

If you have feedback or need assistance with the MCP directory API, please join our Discord server