Subject: Request to create a systemd service for the DSS MCP application Hi System Administrator, Please create a systemd service to run the DSS MCP application. Here are the details: **Service File:** Create a file named `dss-mcp.service` in `/etc/systemd/system/` with the following content: ``` [Unit] Description=DSS MCP application After=network.target [Service] User=overbits Group=overbits WorkingDirectory=/home/overbits/apps/design-system-swarm/tools/api ExecStart=/home/overbits/apps/design-system-swarm/.venv/bin/python -m uvicorn server:app --host 0.0.0.0 --port 3456 Restart=always [Install] WantedBy=multi-user.target ``` **Next Steps:** After creating the file, please run the following commands to enable and start the service: ``` sudo systemctl daemon-reload sudo systemctl enable dss-mcp.service sudo systemctl start dss-mcp.service sudo systemctl status dss-mcp.service ``` Thank you!