We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/raza10006/elevenlabs-mcp-backend'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
kill-port.sh•226 B
#!/bin/bash
# Kill process on port 3000
PORT=${1:-3000}
PID=$(lsof -ti:$PORT)
if [ -z "$PID" ]; then
echo "No process found on port $PORT"
else
echo "Killing process $PID on port $PORT"
kill -9 $PID
echo "Done!"
fi