Skip to main content
Glama
test-dashboard.shโ€ข1 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 ""

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