Deploy shadcn-ui-mcp-server with Docker Compose
masterYou can deploy the server using Docker Compose. This is recommended for production-ready environments.
Quick Start:
- Build and start the container in detached mode.
- Verify health via the
/healthendpoint. - Test the SSE connection using
curl.
Production Deployment:
To start with an Nginx proxy, use the production profile:
docker-compose --profile production up -d
# Build and start
docker-compose up --build -d
# Check health
curl http://localhost:7423/health
# Test SSE connection
curl -N -H "Accept: text/event-stream" http://localhost:7423/sse