ugarapi-mcp-server 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,343 @@
1
+ # AgentHub - Complete Deployment Guide
2
+
3
+ ## 🚀 Quick Start (Non-Technical Setup)
4
+
5
+ This guide will get your AI service business live in 4 hours, even with zero coding experience.
6
+
7
+ ---
8
+
9
+ ## Step 1: Get Your Domain (15 minutes)
10
+
11
+ 1. Go to **Namecheap.com**
12
+ 2. Search for a domain like: `agenthub.ai`, `aiservices.io`, or `botapi.com`
13
+ 3. Purchase (.com or .io recommended) - Cost: ~$12/year
14
+ 4. Don't buy any add-ons, just the domain
15
+
16
+ **Your domain:** `ugarapi.com` ✅
17
+
18
+ ---
19
+
20
+ ## Step 2: Set Up Hosting (20 minutes)
21
+
22
+ ### Option A: Railway.app (Recommended - Easiest)
23
+
24
+ 1. Go to **railway.app**
25
+ 2. Click "Start a New Project"
26
+ 3. Sign up with GitHub (create free GitHub account if needed)
27
+ 4. Click "Deploy from GitHub repo"
28
+ 5. Click "Deploy from Template"
29
+ 6. We'll upload code in Step 4
30
+
31
+ **Cost:** $5/month (includes $5 free credit to start)
32
+
33
+ ### Option B: Render.com (Alternative)
34
+
35
+ 1. Go to **render.com**
36
+ 2. Sign up (free)
37
+ 3. Click "New +" → "Web Service"
38
+ 4. We'll connect GitHub in Step 4
39
+
40
+ **Cost:** $7/month for starter tier
41
+
42
+ ---
43
+
44
+ ## Step 3: Bitcoin Lightning Setup (30 minutes)
45
+
46
+ You need to accept Bitcoin Lightning payments. Here's the easiest way:
47
+
48
+ ### Use BTCPay Server (Hosted)
49
+
50
+ 1. Go to **LunaNode.com**
51
+ 2. Sign up and add $10 credit
52
+ 3. Click "BTCPay Server" in marketplace
53
+ 4. Deploy one-click install ($3.50/month)
54
+ 5. Once deployed, note down:
55
+ - **Server URL:** `https://your-btcpay.lunanode.com`
56
+ - **Store ID:** (found in Settings → Stores)
57
+ - **API Key:** (create in Settings → Access Tokens)
58
+
59
+ Save these - you'll need them!
60
+
61
+ **Alternative (If LunaNode doesn't work):**
62
+ - Use **OpenNode.com** - easier but takes 1% fee
63
+ - Or **Strike.me** for US-based setup
64
+
65
+ ---
66
+
67
+ ## Step 4: Upload Your Code (30 minutes)
68
+
69
+ ### A. Create GitHub Account (if you don't have one)
70
+ 1. Go to **GitHub.com**
71
+ 2. Sign up (free)
72
+ 3. Verify your email
73
+
74
+ ### B. Upload the Code
75
+ 1. Click the "+" in top right → "New repository"
76
+ 2. Name it: `agenthub-api`
77
+ 3. Make it **Private**
78
+ 4. Click "Create repository"
79
+ 5. Click "uploading an existing file"
80
+ 6. Drag and drop these files I created:
81
+ - `main.py`
82
+ - `requirements.txt`
83
+
84
+ 7. Click "Commit changes"
85
+
86
+ ### C. Connect to Railway/Render
87
+ 1. Go back to Railway.app (or Render.com)
88
+ 2. Click "New Project" → "Deploy from GitHub"
89
+ 3. Select `agenthub-api` repository
90
+ 4. Railway will auto-detect it's Python
91
+ 5. Click "Deploy"
92
+
93
+ ---
94
+
95
+ ## Step 5: Configure Environment Variables (15 minutes)
96
+
97
+ In Railway/Render dashboard:
98
+
99
+ 1. Click your project → "Variables" tab
100
+ 2. Add these variables:
101
+
102
+ ```
103
+ BTCPAY_SERVER_URL=https://your-btcpay.lunanode.com
104
+ BTCPAY_STORE_ID=your_store_id_from_step3
105
+ BTCPAY_API_KEY=your_api_key_from_step3
106
+ OPENWEATHER_API_KEY=get_free_from_openweathermap.org
107
+ GOOGLE_MAPS_API_KEY=optional_for_now
108
+ ```
109
+
110
+ 3. Get free OpenWeather API key:
111
+ - Go to **openweathermap.org**
112
+ - Sign up free
113
+ - Get API key from dashboard
114
+ - Paste into Railway variables
115
+
116
+ 4. Click "Redeploy" (Railway will restart with new variables)
117
+
118
+ ---
119
+
120
+ ## Step 6: Connect Your Domain (20 minutes)
121
+
122
+ ### In Railway/Render:
123
+ 1. Click "Settings" → "Domains"
124
+ 2. Click "Add Domain"
125
+ 3. Enter your domain: `yourdomain.com`
126
+ 4. Copy the DNS records shown
127
+
128
+ ### In Namecheap:
129
+ 1. Go to your domain → "Advanced DNS"
130
+ 2. Add the DNS records from Railway
131
+ 3. Usually looks like:
132
+ - Type: `CNAME`
133
+ - Host: `@`
134
+ - Value: `your-app.railway.app`
135
+ 4. Save changes
136
+
137
+ **Wait 5-60 minutes** for DNS to propagate (grab coffee ☕)
138
+
139
+ ---
140
+
141
+ ## Step 7: Test Your Services (30 minutes)
142
+
143
+ Once your domain is live, test it:
144
+
145
+ ### Test 1: Check it's running
146
+ Open browser, go to: `https://ugarapi.com/health`
147
+
148
+ Should see: `{"status": "healthy"}`
149
+
150
+ ### Test 2: View AI manifest
151
+ Go to: `https://ugarapi.com/.well-known/ai-services.json`
152
+
153
+ Should see service list with prices
154
+
155
+ ### Test 3: Create a test payment
156
+ Use this Python script (install Python first from python.org):
157
+
158
+ ```python
159
+ import requests
160
+
161
+ # Create payment
162
+ response = requests.post(
163
+ "https://ugarapi.com/api/v1/payment/create",
164
+ json={
165
+ "service": "web_extraction",
166
+ "amount_sats": 1000
167
+ }
168
+ )
169
+
170
+ print(response.json())
171
+ # You'll get a Lightning invoice to pay
172
+ ```
173
+
174
+ ### Test 4: Make actual request
175
+ After paying the invoice above, use the `invoice_id` to test:
176
+
177
+ ```python
178
+ import requests
179
+
180
+ response = requests.post(
181
+ "https://ugarapi.com/api/v1/extract",
182
+ json={
183
+ "url": "https://example.com",
184
+ "selectors": {
185
+ "title": "h1",
186
+ "paragraphs": "p"
187
+ },
188
+ "payment_proof": "inv_abc123..." # Your invoice_id
189
+ }
190
+ )
191
+
192
+ print(response.json())
193
+ ```
194
+
195
+ ---
196
+
197
+ ## Step 8: Marketing to AI Agents (Ongoing)
198
+
199
+ ### Immediate (Day 1):
200
+ 1. **Submit to AI directories:**
201
+ - AIPlugins.io
202
+ - ToolHub.ai
203
+ - LangChain integrations
204
+
205
+ 2. **Create public API docs:**
206
+ Your FastAPI already has docs at: `https://yourdomain.com/docs`
207
+
208
+ 3. **Post on X/Twitter:**
209
+ ```
210
+ 🤖 Just launched AgentHub - automated services for AI agents
211
+
212
+ ✅ Web data extraction
213
+ ✅ Document timestamping
214
+ ✅ API aggregation
215
+
216
+ Pay-per-use via Bitcoin Lightning âš¡
217
+
218
+ https://yourdomain.com
219
+ ```
220
+
221
+ ### Week 1:
222
+ 4. **Register with MCP (Model Context Protocol):**
223
+ - Create MCP server config
224
+ - Submit to MCP directory
225
+ - AI systems can auto-discover you
226
+
227
+ 5. **Add to GitHub:**
228
+ - Create public repo with API examples
229
+ - Tag: `ai-agents`, `bitcoin`, `api`, `automation`
230
+
231
+ ### Month 1:
232
+ 6. **Partner outreach:**
233
+ - Email AI agent platforms (AutoGPT, AgentGPT)
234
+ - Offer free tier for their users
235
+ - Get featured in their marketplaces
236
+
237
+ 7. **Create demo video:**
238
+ - Screen recording of AI agent using your service
239
+ - Post on YouTube, LinkedIn
240
+
241
+ ---
242
+
243
+ ## Step 9: Monitor & Scale (Ongoing)
244
+
245
+ ### Set up monitoring:
246
+ 1. **UptimeRobot.com** (free)
247
+ - Monitor `https://ugarapi.com/health`
248
+ - Get alerts if down
249
+
250
+ 2. **Google Analytics**
251
+ - Track API usage
252
+ - See which services are popular
253
+
254
+ ### Scale when ready:
255
+ - **10+ AI agents using you** → Upgrade hosting to $15/month tier
256
+ - **100+ requests/day** → Add caching layer (Redis)
257
+ - **$1000/month revenue** → Hire developer to add more services
258
+
259
+ ---
260
+
261
+ ## Troubleshooting
262
+
263
+ ### "502 Bad Gateway"
264
+ - Check Railway logs: Dashboard → Logs
265
+ - Usually means Python crashed
266
+ - Check environment variables are set
267
+
268
+ ### "Payment required" error
269
+ - Verify BTCPay Server is running
270
+ - Check API key is correct
271
+ - Test creating invoice manually in BTCPay
272
+
273
+ ### "Module not found" error
274
+ - Railway should auto-install from requirements.txt
275
+ - If not: click "Redeploy"
276
+
277
+ ### Domain not working
278
+ - DNS can take up to 24 hours
279
+ - Use `nslookup yourdomain.com` to check
280
+ - Try accessing via Railway's temporary URL first
281
+
282
+ ---
283
+
284
+ ## Cost Breakdown (First 3 Months)
285
+
286
+ | Month | Item | Cost |
287
+ |-------|------|------|
288
+ | Month 1 | Domain | $12 |
289
+ | | Hosting | $0 (free credit) |
290
+ | | BTCPay Server | $3.50 |
291
+ | | API credits | $20 |
292
+ | | **Total** | **$35.50** |
293
+ | Month 2 | Hosting | $5 |
294
+ | | BTCPay Server | $3.50 |
295
+ | | API credits | $30 |
296
+ | | **Total** | **$38.50** |
297
+ | Month 3 | Hosting | $5 |
298
+ | | BTCPay Server | $3.50 |
299
+ | | API credits | $50 |
300
+ | | Marketing | $50 |
301
+ | | **Total** | **$108.50** |
302
+
303
+ **Total 3-month cost:** ~$182.50 (well under your $500 budget!)
304
+
305
+ ---
306
+
307
+ ## What You'll Have After Setup
308
+
309
+ ✅ Live API at your own domain
310
+ ✅ 3 working services AI agents can discover
311
+ ✅ Bitcoin Lightning payment processing
312
+ ✅ Automatic invoicing and verification
313
+ ✅ Public API documentation
314
+ ✅ Usage tracking and analytics
315
+ ✅ 24/7 automated operation
316
+
317
+ ---
318
+
319
+ ## Support & Next Steps
320
+
321
+ **Stuck? Here's how to get help:**
322
+ 1. Check Railway logs for errors
323
+ 2. Test each endpoint individually
324
+ 3. Verify all environment variables
325
+ 4. Ask me any questions!
326
+
327
+ **Once live, focus on:**
328
+ 1. Getting first 10 AI agent customers
329
+ 2. Monitor which services are used most
330
+ 3. Improve based on usage data
331
+ 4. Add more services that complement popular ones
332
+
333
+ **Remember:** The code handles everything automatically. Once deployed, it runs 24/7 without you touching it. Your job is just marketing and monitoring!
334
+
335
+ ---
336
+
337
+ ## Emergency Contacts
338
+
339
+ - Railway Support: help@railway.app
340
+ - BTCPay Support: https://chat.btcpayserver.org
341
+ - Domain Issues: Namecheap live chat
342
+
343
+ You've got this! 🚀
@@ -0,0 +1,189 @@
1
+ # GitHub Setup for UgarAPI - Super Simple Guide
2
+
3
+ ## What is GitHub?
4
+ GitHub stores your code online so Railway can access it. Think of it like Google Drive, but for code.
5
+
6
+ ---
7
+
8
+ ## Step 1: Create GitHub Account (5 minutes)
9
+
10
+ 1. Go to: **github.com**
11
+ 2. Click "Sign up"
12
+ 3. Enter:
13
+ - Email: (your email)
14
+ - Password: (make it strong)
15
+ - Username: (anything you want, like "ugarapi" or your name)
16
+ 4. Verify email (check your inbox)
17
+ 5. **Done!** You now have a GitHub account
18
+
19
+ ---
20
+
21
+ ## Step 2: Create Your Repository (3 minutes)
22
+
23
+ 1. Once logged into GitHub, click the **"+"** icon (top right)
24
+ 2. Click **"New repository"**
25
+ 3. Fill in:
26
+ - **Repository name:** `ugarapi-service`
27
+ - **Description:** "AI services with Bitcoin Lightning payments"
28
+ - **Private or Public?** Choose **Private** (keeps your code hidden)
29
+ 4. Check the box: **"Add a README file"**
30
+ 5. Click **"Create repository"**
31
+
32
+ You now have a place to store your code!
33
+
34
+ ---
35
+
36
+ ## Step 3: Upload Your Code Files (5 minutes)
37
+
38
+ You should have these files downloaded:
39
+ - `main.py`
40
+ - `requirements.txt`
41
+ - `DEPLOYMENT_GUIDE.md`
42
+ - `ai_service_business_plan.md`
43
+ - `MARKETING_STRATEGY.md`
44
+ - `test_agent_simulator.py`
45
+
46
+ **Upload them:**
47
+
48
+ 1. In your repository, click **"Add file"** → **"Upload files"**
49
+ 2. Drag all 6 files into the upload area
50
+ 3. At the bottom, type: "Initial upload - UgarAPI service"
51
+ 4. Click **"Commit changes"**
52
+
53
+ **Done!** Your code is now on GitHub.
54
+
55
+ ---
56
+
57
+ ## Step 4: Connect Railway to GitHub (3 minutes)
58
+
59
+ 1. Go back to **railway.app**
60
+ 2. Click **"New Project"**
61
+ 3. Click **"Deploy from GitHub repo"**
62
+ 4. You'll see a popup asking to authorize Railway
63
+ 5. Click **"Authorize Railway"**
64
+ 6. Select **"Only select repositories"**
65
+ 7. Choose: `ugarapi-service`
66
+ 8. Click **"Install & Authorize"**
67
+
68
+ **Railway can now see your code!**
69
+
70
+ ---
71
+
72
+ ## Step 5: Deploy to Railway (2 minutes)
73
+
74
+ 1. In Railway, click your repository: `ugarapi-service`
75
+ 2. Railway auto-detects it's Python ✅
76
+ 3. Click **"Deploy Now"**
77
+ 4. Wait 2-3 minutes while it builds...
78
+ 5. You'll see: **"Deployed successfully"** ✅
79
+
80
+ ---
81
+
82
+ ## Step 6: Get Your Temporary URL
83
+
84
+ Before connecting your domain, Railway gives you a test URL:
85
+
86
+ 1. Click your service in Railway dashboard
87
+ 2. Click **"Settings"**
88
+ 3. Scroll to **"Domains"**
89
+ 4. You'll see something like: `ugarapi-service-production.up.railway.app`
90
+ 5. **Copy this URL** - we'll use it for testing
91
+
92
+ **Test it:**
93
+ Open browser, paste: `https://your-railway-url.railway.app/health`
94
+
95
+ Should see: `{"status": "healthy"}`
96
+
97
+ ---
98
+
99
+ ## Step 7: Connect ugarapi.com to Railway
100
+
101
+ ### In Railway:
102
+ 1. Click **"Settings"** → **"Domains"**
103
+ 2. Click **"Custom Domain"**
104
+ 3. Enter: `ugarapi.com`
105
+ 4. Railway will show you DNS records to add
106
+
107
+ **Copy these 2 pieces of info:**
108
+ - **Type:** (usually CNAME)
109
+ - **Value:** (something like `ugarapi-service.railway.app`)
110
+
111
+ ### In Namecheap:
112
+ 1. Log into Namecheap
113
+ 2. Find your domain: `ugarapi.com`
114
+ 3. Click **"Manage"**
115
+ 4. Go to **"Advanced DNS"** tab
116
+ 5. Click **"Add New Record"**
117
+ 6. Fill in:
118
+ - **Type:** CNAME
119
+ - **Host:** @
120
+ - **Value:** (paste from Railway)
121
+ - **TTL:** Automatic
122
+ 7. Click **"Save Changes"**
123
+
124
+ **Wait 10-60 minutes** for DNS to update globally.
125
+
126
+ ---
127
+
128
+ ## Step 8: Verify It's Working
129
+
130
+ After DNS updates:
131
+
132
+ 1. Open browser: `https://ugarapi.com/health`
133
+ 2. Should see: `{"status": "healthy"}`
134
+ 3. Check docs: `https://ugarapi.com/docs`
135
+ 4. Check AI manifest: `https://ugarapi.com/.well-known/ai-services.json`
136
+
137
+ **All working?** You're LIVE! 🎉
138
+
139
+ ---
140
+
141
+ ## Common Issues
142
+
143
+ ### "Page not found"
144
+ - DNS hasn't updated yet (wait longer)
145
+ - Check Namecheap DNS settings match Railway exactly
146
+
147
+ ### "Application error"
148
+ - Click Railway → Logs → see what error says
149
+ - Usually missing environment variables (we'll add those next)
150
+
151
+ ### "This site can't be reached"
152
+ - Railway might be building still (check deployment status)
153
+ - DNS might not be updated (use nslookup to check)
154
+
155
+ ---
156
+
157
+ ## Next Steps After This
158
+
159
+ Once your site is live at `ugarapi.com`:
160
+
161
+ 1. **Add environment variables** (BTCPay, API keys)
162
+ 2. **Set up BTCPay Server** for Bitcoin payments
163
+ 3. **Test with simulator** to make sure everything works
164
+ 4. **Start marketing** to AI agents
165
+
166
+ I'll guide you through each step!
167
+
168
+ ---
169
+
170
+ ## Quick Reference
171
+
172
+ **GitHub Repo:** github.com/YOUR_USERNAME/ugarapi-service
173
+ **Railway Dashboard:** railway.app/project/YOUR_PROJECT
174
+ **Live Site:** https://ugarapi.com
175
+ **API Docs:** https://ugarapi.com/docs
176
+
177
+ ---
178
+
179
+ ## Need Help?
180
+
181
+ **GitHub stuck?**
182
+ - Check: help.github.com
183
+ - Or: Email support@github.com
184
+
185
+ **Railway stuck?**
186
+ - Check deployment logs in Railway dashboard
187
+ - Or: Join Railway Discord (discord.gg/railway)
188
+
189
+ **Let me know where you get stuck and I'll help troubleshoot!**