# 🚀 Windows Quick Start - New Installation
## Starting Point for New Windows Installation
### ✅ Step 0: Check Prerequisites
Before you begin, verify you have:
1. **Windows 10 or 11**
2. **Administrator access** (may be needed for some installations)
3. **Internet connection**
---
## 📥 Step 1: Install Required Software (START HERE)
### 1.1 Install Python 3.10 or Higher
**Download:**
- Go to: **https://www.python.org/downloads/**
- Download **Python 3.11 or 3.12** (Windows installer 64-bit)
**Install:**
- Run the installer
- ⚠️ **CRITICAL:** Check **"Add Python to PATH"** at the bottom
- Click "Install Now"
**Verify:**
```powershell
python --version
pip --version
```
Expected output:
```
Python 3.11.5
pip 23.2.1
```
### 1.2 Install Git
**Download:**
- Go to: **https://git-scm.com/download/win**
- Download the installer
**Install:**
- Run installer with default settings
- Click "Next" through all steps
**Verify:**
```powershell
git --version
```
Expected: `git version 2.42.0` (or similar)
### 1.3 PostgreSQL (Optional - Skip for Development)
**For Development:** Skip this - SQLite is included with Python
**For Production Only:**
- Download from: **https://www.postgresql.org/download/windows/**
- Install with default settings
- Remember the `postgres` user password
---
## 🎯 Next Steps After Prerequisites
Once you have Python and Git installed, continue with:
1. **Clone the repository** (Step 2)
2. **Set up Python environment** (Step 3)
3. **Install dependencies** (Step 4)
4. **Configure environment** (Step 5)
See `WINDOWS_INSTALLATION_GUIDE.md` for complete step-by-step instructions.
---
## 🔍 Quick Verification Checklist
Before proceeding to Step 2, verify:
- [ ] `python --version` shows Python 3.10 or higher
- [ ] `pip --version` shows pip is installed
- [ ] `git --version` shows Git is installed
- [ ] You have internet connection
- [ ] You know where you want to install the project (e.g., `C:\Users\YourName\Downloads`)
---
## 📚 Full Documentation
- **Complete Guide:** `WINDOWS_INSTALLATION_GUIDE.md`
- **Quick Reference:** `QUICK_INSTALL_REFERENCE.md`
- **Deployment Guide:** `WINDOWS_DEPLOYMENT.md`
---
## ⚡ Fast Track (After Prerequisites)
If you already have Python and Git installed:
```powershell
# 1. Clone repository
git clone https://github.com/YOUR_USERNAME/fccs-mcp-ag-server.git
cd fccs-mcp-ag-server
# 2. Run automated setup
.\setup-windows.bat
# 3. Start server
.\start-server.bat
```
---
**Ready to start? Begin with Step 1.1 above!** 🎉