production-guide.md•1.38 kB
# MCP Memory Service - Production Setup
## 🚀 Quick Start
This MCP Memory Service is configured with **consolidation system**, **mDNS auto-discovery**, **HTTPS**, and **automatic startup**.
### **Installation**
```bash
# 1. Install the service
bash install_service.sh
# 2. Update configuration (if needed)
./update_service.sh
# 3. Start the service
sudo systemctl start mcp-memory
```
### **Verification**
```bash
# Check service status
sudo systemctl status mcp-memory
# Test API health
curl -k https://localhost:8000/api/health
# Verify mDNS discovery
avahi-browse -t _mcp-memory._tcp
```
## 📋 **Service Details**
- **Service Name**: `memory._mcp-memory._tcp.local.`
- **HTTPS Address**: https://localhost:8000
- **API Key**: `mcp-0b1ccbde2197a08dcb12d41af4044be6`
- **Auto-Startup**: ✅ Enabled
- **Consolidation**: ✅ Active
- **mDNS Discovery**: ✅ Working
## 🛠️ **Management**
```bash
./service_control.sh start # Start service
./service_control.sh stop # Stop service
./service_control.sh status # Show status
./service_control.sh logs # View logs
./service_control.sh health # Test API
```
## 📖 **Documentation**
- **Complete Guide**: `COMPLETE_SETUP_GUIDE.md`
- **Service Files**: `mcp-memory.service`, management scripts
- **Archive**: `archive/setup-development/` (development files)
**✅ Ready for production use!**