We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SandeepBaskaran/carbon-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
kill-server.sh•446 B
#!/bin/bash
# Script to kill the carbon-mcp server running on port 4000
PORT=${PORT:-4000}
echo "Looking for process on port $PORT..."
PID=$(lsof -ti:$PORT 2>/dev/null)
if [ -z "$PID" ]; then
echo "✅ No process found on port $PORT"
exit 0
fi
echo "Found process $PID on port $PORT"
kill -9 $PID 2>/dev/null
if [ $? -eq 0 ]; then
echo "✅ Successfully killed process $PID"
else
echo "❌ Failed to kill process $PID"
exit 1
fi