BluestoneApps MCP Remote Server

#!/bin/bash # This script builds and runs the MCP server in a Docker container locally # Stop any existing container echo "Stopping any existing mcp-server container..." docker stop mcp-server 2>/dev/null || true # Build the Docker image echo "Building Docker image..." docker build -t mcp-server:local . # Run the Docker container echo "Running Docker container..." docker run --rm -p 8000:8000 \ -v "$(pwd):/app" \ --name mcp-server \ mcp-server:local # Note: Press Ctrl+C to stop the container