Skip to main content
Glama
install.shโ€ข1.37 kB
#!/bin/bash # MCP Software Engineer Server Installation Script set -e echo "๐Ÿš€ Installing MCP Software Engineer Server..." # Check for Node.js if ! command -v node &> /dev/null; then echo "โŒ Node.js is not installed. Please install Node.js 18 or higher." exit 1 fi # Check Node.js version NODE_VERSION=$(node -v | cut -d'v' -f2 | cut -d'.' -f1) if [ "$NODE_VERSION" -lt 18 ]; then echo "โŒ Node.js version 18 or higher is required. Current version: $(node -v)" exit 1 fi echo "โœ… Node.js $(node -v) detected" # Install dependencies echo "๐Ÿ“ฆ Installing dependencies..." npm install # Build the project echo "๐Ÿ”จ Building the project..." npm run build echo "โœ… Build completed successfully!" # Get the absolute path of the built server SERVER_PATH=$(pwd)/dist/index.js echo "" echo "๐ŸŽ‰ Installation completed successfully!" echo "" echo "๐Ÿ“‹ Next steps:" echo "1. Add the following configuration to your Claude Desktop config file:" echo "" echo '{ "mcpServers": { "software-engineer": { "command": "node", "args": ["'$SERVER_PATH'"], "env": {} } } }' echo "" echo "2. Restart Claude Desktop" echo "3. Start building amazing applications! ๐Ÿš€" echo "" echo "๐Ÿ“– For documentation and usage examples, see: README.md" echo "๐Ÿ› Report issues at: https://github.com/your-repo/mcp-software-engineer/issues"

Latest Blog Posts

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/Rajawatrajat/mcp-software-engineer'

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