We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Davidkata1234/devir'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run.sh•372 B
#!/bin/bash
echo "Service 1 starting..."
counter=0
while true; do
counter=$((counter + 1))
echo "[INFO] Service 1 - tick $counter"
if [ $((counter % 5)) -eq 0 ]; then
echo "[WARN] Service 1 - warning at tick $counter"
fi
if [ $((counter % 10)) -eq 0 ]; then
echo "[ERROR] Service 1 - error at tick $counter" >&2
fi
sleep 2
done