Skip to main content
Glama
test-dashboard.sh1 kB
#!/bin/bash # Quick dashboard test script echo "🧪 Testing Dashboard Server..." echo "" # Test health endpoint echo "1️⃣ Testing health endpoint..." HEALTH=$(curl -s --max-time 3 http://localhost:3000/api/health) if [ $? -eq 0 ]; then echo " ✅ Health endpoint responding" echo " Response: $HEALTH" else echo " ❌ Health endpoint not responding" fi echo "" echo "2️⃣ Testing dashboard page..." STATUS=$(curl -s -o /dev/null -w "%{http_code}" --max-time 3 http://localhost:3000/) if [ "$STATUS" = "200" ]; then echo " ✅ Dashboard page accessible (HTTP $STATUS)" else echo " ❌ Dashboard page returned HTTP $STATUS" fi echo "" echo "3️⃣ Checking process..." if pgrep -f "dashboard-server.js" > /dev/null; then echo " ✅ Dashboard server process is running" echo " PID: $(pgrep -f dashboard-server.js)" else echo " ❌ Dashboard server process not found" fi echo "" echo "🌐 Open in browser: http://localhost:3000" echo ""

Latest Blog Posts

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/telmon95/VulneraMCP'

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