Skip to main content
Glama

SlopWatch MCP Server

install.shโ€ข1.48 kB
#!/bin/bash echo "๐Ÿ”ฅ SlopWatch MCP Server Installation" echo "=====================================" # Check Node.js version if ! command -v node &> /dev/null; then echo "โŒ Node.js is required but not installed" echo " Please install Node.js 18 or higher from https://nodejs.org" exit 1 fi NODE_VERSION=$(node -v | cut -d'v' -f2) REQUIRED_VERSION="18.0.0" if [ "$(printf '%s\n' "$REQUIRED_VERSION" "$NODE_VERSION" | sort -V | head -n1)" = "$REQUIRED_VERSION" ]; then echo "โœ… Node.js $NODE_VERSION detected" else echo "โŒ Node.js 18 or higher required, found $NODE_VERSION" exit 1 fi # Install dependencies echo "๐Ÿ“ฆ Installing dependencies..." npm install # Make server executable chmod +x src/server.js # Test the server echo "๐Ÿงช Testing server..." if npm test; then echo "โœ… Server test passed!" else echo "โŒ Server test failed" exit 1 fi echo "" echo "๐ŸŽ‰ SlopWatch MCP Server installed successfully!" echo "" echo "๐Ÿ“‹ Next steps:" echo " 1. Add to your Windsurf settings:" echo " ~/.windsurf/settings.json" echo "" echo " 2. Add this configuration:" echo ' "mcpServers": {' echo ' "slopwatch": {' echo ' "command": "node",' echo ' "args": ["'$(pwd)'/src/server.js"],' echo ' "env": {}' echo ' }' echo ' }' echo "" echo " 3. Restart Windsurf and start catching AI lies!" echo "" echo "๐Ÿ” Test with: npm test" echo "๐Ÿš€ Start HTTP server: npm run http"

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/JoodasCode/SlopWatch'

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