Skip to main content
Glama

DillyDallyMCP

by DIodide
setup.shโ€ข1.61 kB
#!/usr/bin/env bash # Setup script for DillyDallyMCP repository set -e echo "๐Ÿš€ Setting up DillyDallyMCP repository..." # Check if git is installed if ! command -v git &> /dev/null; then echo "โŒ Git is not installed. Please install git first." exit 1 fi # Check if npm is installed if ! command -v npm &> /dev/null; then echo "โŒ npm is not installed. Please install Node.js first." exit 1 fi # Initialize git if not already initialized if [ ! -d .git ]; then echo "๐Ÿ“ฆ Initializing git repository..." git init echo "โœ… Git repository initialized" else echo "โ„น๏ธ Git repository already initialized" fi # Add all files echo "๐Ÿ“ Adding files to git..." git add . # Check if there are changes to commit if git diff --staged --quiet; then echo "โ„น๏ธ No changes to commit" else echo "๐Ÿ’พ Creating initial commit..." git commit -m "Initial commit: Dedalus MCP server" || true echo "โœ… Initial commit created" fi # Install dependencies echo "๐Ÿ“ฅ Installing dependencies..." npm install echo "โœ… Dependencies installed" # Build the project echo "๐Ÿ”จ Building project..." npm run build echo "โœ… Build complete" echo "" echo "โœ… Setup complete!" echo "" echo "๐Ÿ“‹ Next steps:" echo " 1. Create a new repository on GitHub/GitLab named 'DillyDallyMCP'" echo " 2. Run: git remote add origin <your-repo-url>" echo " 3. Run: git branch -M main" echo " 4. Run: git push -u origin main" echo "" echo "๐Ÿงช To test locally:" echo " STDIO mode: npm run dev:stdio" echo " HTTP mode: npm run dev:http" echo " Inspector: npm run inspector"

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/DIodide/DillyDallyMCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server