We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bobhuff0/MCPAddIn'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
# Weather Server Restart Script
echo "๐ค๏ธ Weather Server Restart Script"
echo "================================="
# Check if server is running
if pgrep -f "node dist/weather-server.js" > /dev/null; then
echo "๐ Stopping weather server..."
pkill -f "node dist/weather-server.js"
sleep 2
else
echo "โน๏ธ Weather server not running"
fi
# Set API key (change this to your real API key)
export OPENWEATHER_API_KEY="${OPENWEATHER_API_KEY:-7859575ac9bb3bc2f963f9044962b5aa}"
echo "๐ Starting weather server with API key: ${OPENWEATHER_API_KEY:0:8}..."
echo "๐ Server will be available at: http://localhost:3004"
echo "๐ฑ Web interface: http://localhost:3004"
echo ""
# Start the server
node dist/weather-server.js