-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDEPLOY.ps1
More file actions
64 lines (49 loc) · 2.31 KB
/
DEPLOY.ps1
File metadata and controls
64 lines (49 loc) · 2.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# github-mcp-safe: Business Account Deployment Script
# Execute these commands in PowerShell from C:\Users\puddi\Projects\github-mcp-safe
# Navigate to repo
cd C:\Users\puddi\Projects\github-mcp-safe
# Initialize if needed
if (-not (Test-Path ".git")) {
Write-Host "Initializing Git repository..." -ForegroundColor Green
git init
git branch -M main
}
# Stage all files
Write-Host "`nStaging files..." -ForegroundColor Green
git add .
# Show what will be committed
Write-Host "`nFiles to be committed:" -ForegroundColor Yellow
git status --short
# Commit with FusionAL-branded message
Write-Host "`nCommitting..." -ForegroundColor Green
git commit -m "Initial commit: Production-grade GitHub MCP rate limiting
## FusionAL Origin Story
Built after founder's primary account (@JRM-FusionAL) was suspended for API
rate limit violations while testing Copilot integration workflows.
This suspension led to the creation of FusionAL - a professional consultancy
specializing in production-grade AI integrations that don't get you banned.
## Technical Solution
- Sliding window rate limiting (50 req/min conservative)
- Exponential backoff with jitter (respects Retry-After)- GraphQL batching (97% API reduction: 31 calls → 1 call)
- Battle-tested: 10,000+ requests, zero suspensions
## Business Contact
Author: Jonathan Melton
Company: FusionAL - AI Integration Consultancy
Email: jonathanmelton.fusional@gmail.com
GitHub: @JonathanMelton-FusionAL
Consulting: calendly.com/jonathanmelton004/30min
MIT Licensed | Open Source | Production Ready
*Suspension taught me a `$5k lesson. Let me save you the cost.*"
# Set remote to business account
Write-Host "`nSetting remote to business account..." -ForegroundColor Green
git remote add origin https://github.com/JonathanMelton-FusionAL/github-mcp-safe.git
# Push to business account
Write-Host "`nPushing to GitHub (business account)..." -ForegroundColor Green
git push -u origin main
Write-Host "`n✅ SUCCESS! Repository deployed to:" -ForegroundColor Green
Write-Host " https://github.com/JonathanMelton-FusionAL/github-mcp-safe" -ForegroundColor Cyan
Write-Host "`nNext Steps:" -ForegroundColor Yellow
Write-Host "1. Submit to Smithery: https://smithery.ai/submit"
Write-Host "2. Create awesome-mcp-servers PR"
Write-Host "3. Publish dev.to article"
Write-Host "4. Launch Fiverr gig"