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•272 B
#!/bin/bash
echo "Service 2 starting..."
counter=0
while true; do
counter=$((counter + 1))
echo "[INFO] Service 2 - processing item $counter"
if [ $((counter % 3)) -eq 0 ]; then
echo "[DEBUG] Service 2 - debug info at $counter"
fi
sleep 3
done