We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/profullstack/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
start.sh•647 B
#!/bin/zsh
# Load zshrc if it exists
if [ -f $HOME/.zshrc ]; then
source $HOME/.zshrc
fi
# Load environment variables from .env file if it exists
if [ -f .env ]; then
source .env
fi
# Set NODE_ENV to production if not already set
export NODE_ENV=${NODE_ENV:-production}
# Install dependencies for all MCP modules
echo "Installing dependencies for MCP modules..."
for module_dir in mcp_modules/*/; do
if [ -f "${module_dir}package.json" ]; then
echo "Installing dependencies for $(basename "$module_dir")..."
(cd "$module_dir" && pnpm install --prod --silent)
fi
done
echo "Starting MCP server..."
# Start the server
pnpm start