We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dk123579/ADL-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
start.shโข547 B
#!/bin/bash
# ADL System Startup Script for Linux
echo "๐ Starting Architectural Decision Log System..."
# Check if Node.js is installed
if ! command -v node &> /dev/null; then
echo "โ Node.js is not installed. Please install Node.js 18 or higher."
exit 1
fi
# Create data directory if it doesn't exist
mkdir -p data
# Install dependencies if node_modules doesn't exist
if [ ! -d "node_modules" ]; then
echo "๐ฆ Installing dependencies..."
npm install
fi
# Start all services
echo "๐ Starting services..."
npm start