Commit d211937

mo khan <mo@mokhan.ca>
2025-06-23 14:33:45
docs: update installation instructions to use proper Makefile commands
Remove reference to redundant install-servers.sh script and update documentation to use the existing make targets for building and installing MCP servers. ๐Ÿค– Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 44dba71
CLAUDE.md
@@ -261,7 +261,11 @@ Created comprehensive test suite (`test/integration_test.go`):
 
 ### **๐Ÿ“ฆ Installation Ready**
 
-**To install optimized servers**: Run `./install-servers.sh` (requires sudo)
+**To install optimized servers**: Use the existing Makefile:
+```bash
+make clean build    # Build optimized servers
+sudo make install   # Install to /usr/local/bin
+```
 
 All servers are now **production-ready** with:
 - โšก **Instant startup** (<100ms)
install-servers.sh
@@ -1,28 +0,0 @@
-#!/bin/bash
-# Installation script for optimized MCP servers
-
-echo "Installing optimized MCP servers to /usr/local/bin..."
-
-# Build all servers first
-make clean build
-
-# Install each server
-for server in bin/mcp-*; do
-    server_name=$(basename "$server")
-    echo "Installing $server_name..."
-    sudo cp "$server" /usr/local/bin/
-    sudo chmod +x "/usr/local/bin/$server_name"
-done
-
-echo "Verifying installations..."
-for server in /usr/local/bin/mcp-*; do
-    if [ -x "$server" ]; then
-        echo "โœ… $(basename "$server") installed successfully"
-    else
-        echo "โŒ $(basename "$server") installation failed"
-    fi
-done
-
-echo ""
-echo "Installation complete! All MCP servers are now available in /usr/local/bin/"
-echo "You can now configure Claude Code to use these optimized servers."
\ No newline at end of file