We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cjo4m06/mcp-shrimp-task-manager'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
restart.sh•280 B
#!/bin/bash
# Restart script for Shrimp Task Viewer
echo "🔄 Restarting Shrimp Task Viewer..."
# Stop any running instances
./stop.sh
# Wait a moment for processes to fully stop
sleep 1
# Start the server
if [ "$1" == "dev" ]; then
./start.sh dev
else
./start.sh
fi