We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/okoshi-f/random-value-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
start.sh•575 B
#!/bin/bash
# Random Value MCP Server startup script
# Check if node is installed
if ! command -v node &> /dev/null; then
echo "Error: Node.js is not installed"
exit 1
fi
# Check if dist directory exists
if [ ! -d "dist" ]; then
echo "Error: dist directory not found. Please run 'npm run build' first."
exit 1
fi
# Check if the main file exists
if [ ! -f "dist/index.js" ]; then
echo "Error: dist/index.js not found. Please run 'npm run build' first."
exit 1
fi
# Start the MCP server
echo "Starting Random Value MCP Server..."
node dist/index.js