Files
proxmox/docs/01-getting-started/README_START_HERE.md
defiQUG 9c37af10c0 Complete optional next steps: fix references and consolidate duplicates
- Fixed 104 broken references in 59 files
- Consolidated 40+ duplicate status files
- Archived duplicates to reports/archive/duplicates/
- Created scripts for reference fixing and consolidation
- Updated content inconsistency reports

All optional cleanup tasks complete.
2026-01-06 02:25:38 -08:00

115 lines
2.5 KiB
Markdown

# 🚀 Quick Start Guide
Your Proxmox workspace is **fully configured and ready to use**!
## ✅ What's Configured
- ✅ All prerequisites installed (Node.js, pnpm, Git)
- ✅ Workspace setup complete
- ✅ All dependencies installed
- ✅ Proxmox connection configured
- Host: 192.168.11.10 (ml110.sankofa.nexus)
- User: root@pam
- API Token: mcp-server ✅
- ✅ Claude Desktop configuration ready
- ✅ MCP Server: 57 tools available
## 🎯 Get Started in 30 Seconds
### Start the MCP Server
```bash
# Production mode
pnpm mcp:start
# Development mode (auto-reload on changes)
pnpm mcp:dev
```
### Test the Connection
```bash
# Test basic operations
pnpm test:basic
# Or run connection test
./scripts/test-connection.sh
```
## 📚 What You Can Do
With the MCP server running, you can:
### Basic Operations (Available Now)
- ✅ List Proxmox nodes
- ✅ List VMs and containers
- ✅ View storage information
- ✅ Check cluster status
- ✅ List available templates
- ✅ Get VM/container details
### Advanced Operations (Requires `PROXMOX_ALLOW_ELEVATED=true`)
- Create/delete VMs and containers
- Start/stop/reboot VMs
- Manage snapshots and backups
- Configure disks and networks
- And much more!
## ⚙️ Enable Advanced Features (Optional)
If you need to create or modify VMs:
1. Edit `~/.env`:
```bash
nano ~/.env
```
2. Change:
```
PROXMOX_ALLOW_ELEVATED=false
```
To:
```
PROXMOX_ALLOW_ELEVATED=true
```
⚠️ **Warning**: This enables destructive operations. Only enable if needed.
## 📖 Documentation
- **Main README**: [README.md](README.md)
- **MCP Setup Guide**: [docs/MCP_SETUP.md](/docs/04-configuration/MCP_SETUP.md)
- **Prerequisites**: [docs/PREREQUISITES.md](PREREQUISITES.md)
- **Setup Status**: [SETUP_STATUS.md](SETUP_STATUS.md)
- **Complete Setup**: [SETUP_COMPLETE_FINAL.md](SETUP_COMPLETE_FINAL.md)
## 🛠️ Useful Commands
```bash
# Verification
./scripts/verify-setup.sh # Verify current setup
./scripts/test-connection.sh # Test Proxmox connection
# MCP Server
pnpm mcp:start # Start server
pnpm mcp:dev # Development mode
pnpm test:basic # Test operations
# Frontend
pnpm frontend:dev # Start frontend dev server
pnpm frontend:build # Build for production
```
## 🎉 You're All Set!
Everything is configured and ready. Just start the MCP server and begin managing your Proxmox infrastructure!
---
**Quick Reference**:
- Configuration: `~/.env`
- MCP Server: `mcp-proxmox/index.js`
- Documentation: See files above