Buy a VPS veya dedicated sunucu ile sizin AI agent — paid içinde crypto, yok KYC.
ServPrivate, yapay zeka ajanlarının döngüde insan olmadan sunucuları uçtan uca satın alabilmesi, dağıtabilmesi ve yönetebilmesi için inşa edilmiştir. Üç entegrasyon yolu, tek alan adı, sıfır KYC, Monero dahil 20 kripto para birimi. Claude (Desktop / Code / Yönetimli Ajanlar), OpenClaw, ChatGPT, Cursor, Continue, Cline, n8n ve herhangi bir özel HTTP istemcisiyle uyumludur.
Tek domain, üç entegrasyon yolu
Altyapınıza uyanı seçin. Hepsi aynı arka uca, aynı hesaplara, aynı /api/v1/* mantığına bağlanıyor.
MCP — için Claude, Cursor, Continue, Cline
Add https://servprivate.com/mcp için sizin MCP config. Eight tools anındaly mevcut: list_plans, list_lokasyonlar, quote, create_sipariş, ödeme_durum, sunucu_credentials, sunucu_action, agent_help.
REST — için any HTTP client
Plain JSON endpoints altında /api/v1/. Bearer auth (auto-issued üzerinde first sipariş, yok signup). OpenAPI 3.1 spec konumunda /openapi.json. Works başlangıç curl, Python, Go, anything şu speaks HTTP.
x402-hafif — anında USDC
For agents ile onların own wallet. Send X-Ödeme-Mode: x402 için /api/v1/orderler → 402 ile USDC deposit instructions içinde one round trip. Yok facilitator gerekli.
Four product lines, one /api/v1/orderler endpoint
Pass `type=vps` / `dedicated` / `rdp` / `gpu` için switch product line. Same Bearer auth, aynı crypto checkout, aynı durum endpoints. Lokasyonlar olur gated per product — API will reject `type=gpu` içinde `russia` (NVIDIA export controls) ve `type=rdp` içinde `iceland` / `panama` / `switzerland`.
| Ürün grubu | type | Available lokasyonlar | From | Tipik agent kullanım senaryosu |
|---|---|---|---|---|
| Linux VPS | vps |
7 (IS · PA · MD · RO · CH · NL · RU) | $7.50/mo | Linux hizmetler (Tor, VPN, mail, scraping bots, web apps). |
| Dedicated Server | dedicated |
7 (IS · PA · MD · RO · CH · NL · RU) | $48.50/mo | Bare-metal izolasyon (yoğun veritabanları, çift soketli iş yükleri, hypervisor'lar). |
| Windows RDP | rdp |
4 (NL · RO · MD · RU) | $11.00/mo | Browser automation, multi-hesap SMM, Forex / MetaTrader, Windows-yalnızca apps. |
| GPU AI Hosting New | gpu |
4 (IS · NL · RO · MD) | $122.00/mo | LLM finetuning, image / video generation, model inference behind sizin own API. |
| Anonymous Domain Names New | domain |
26 TLDs (.com .net .org .io .me .ai .app .dev .fr .de …) | $4.99/yr | One-call live availability + Namecheap-beating prices. Buy via balance; deep-link to /domain-order on the site. |
GET /api/v1/catalog returns live SKU matrix (fiyatlandırma per lokasyon, OS options, GPU model, VRAM). catalog olur open ve cacheable için 5 minutes — yok auth gerekli.
How bu works — 4 calls başlangıç discovery için credentials
Kurulacak SDK yok. OAuth dansı yok. E-posta yok. İlk çağrı hesap tokeninizi döndürür; sonraki üçü siparişi beklemeden aktife taşır.
1Discover ne olur mevcut
Read catalog ve list -ın jurisdictions. Both endpoints olur open (yok auth) ve cacheable için 5 minutes.
2Create sipariş
Seçiminizi POST edin. Yanıt; sipariş başına yeni bir ödeme adresi, tam kripto tutarı, bir son geçerlilik süresi ve Bearer göndermediyseniz yeni bir account_token içerir. TOKEN’I SAKLAYIN: sunucuyu daha sonra yönetmenin tek yolu budur. Kurtarma yolumuz yoktur.
3Pay ve poll
Send crypto için adres. Then poll sipariş until durum reaches "aktif" (typically 1–5 minutes için VPS once deposit olur detected).
4Receive credentials
Once sipariş olur aktif, fetch sunucu. IP adres, root password, SSH port ve a console URL olur returned. SSH içinde, siz're done.
# Step 1: fund USD balance with crypto (min $30, max $2000; bonus credit applied on confirmation) curl -X POST https://servprivate.com/api/v1/topup \ -H 'Content-Type: application/json' \ -d '{ "amount": 200, "crypto": "XMR" }' # → 201 Created { "ok": true, "payment_id": 12345, "amount_usd": 200, "crypto": "XMR", "amount_crypto": "1.2034", "address": "47abc...", "bonus_usd": 50, // free credit on confirmation "credited_usd": 250, // 200 + 50 bonus "expires_in": 3600, "poll_url": "https://servprivate.com/api/v1/topup/12345", "account_token": "AAAA-BBBB-CCCC-DDDD" // STORE THIS } # (send the crypto, poll poll_url until status="confirmed") # Step 2: deploy the server from the funded balance curl -X POST https://servprivate.com/api/v1/orders \ -H 'Authorization: Bearer AAAA-BBBB-CCCC-DDDD' \ -H 'Content-Type: application/json' \ -d '{ "type": "vps", "plan": "IS-S", "location": "iceland", "os": "ubuntu-24", "billing": 3 }' # → 201 Created { "ok": true, "server_id": 9876, "status": "active", // active immediately "charged_usd": 16.88, "new_balance": 233.12, "credentials_url": "https://servprivate.com/api/v1/servers/9876" }
Tek endpoint, dört ürün grubu — kopyala yapıştır örnekler
# All examples assume the agent already topped up via POST /api/v1/topup and the Bearer token is set. # Linux VPS — Iceland, Ubuntu 24, 3-month billing POST /api/v1/orders {"type":"vps", "plan":"IS-S", "location":"iceland", "os":"ubuntu-24", "billing":3} # Dedicated bare-metal — Switzerland, AlmaLinux, annual POST /api/v1/orders {"type":"dedicated", "plan":"CH-3", "location":"switzerland", "os":"alma-9", "billing":12} # Windows RDP — Netherlands, Win Server 2022, monthly POST /api/v1/orders {"type":"rdp", "plan":"NL-M", "location":"netherlands", "os":"win-2022", "billing":1} # GPU AI — H100 SXM5 with vLLM + Llama 3.3 70B pre-downloaded + HF token + SSH key + auto-shutdown after 24h POST /api/v1/orders { "type":"gpu", "plan":"IS-L", "location":"iceland", "os":"ubuntu-22-cuda", "billing":1, "ai_stacks": ["vllm", "jupyterlab"], "pretrained_models": ["llama-3.3-70b", "flux-dev"], "hf_token": "hf_...", // optional — needed for Llama / Mistral (gated) "ssh_public_key": "ssh-ed25519 AAAA...", // optional — password-less login "public_endpoint": true, // auto Let's Encrypt + nginx reverse proxy on 443 "auto_shutdown_hours": 24 // destroy after 24h to bound cost } # GPU AI image-gen — Netherlands, RTX 5090 (32 GB GDDR7), ComfyUI + FLUX.1-dev preinstalled, 3-month billing POST /api/v1/orders { "type":"gpu", "plan":"NL-M", "location":"netherlands", "os":"ubuntu-22-cuda", "billing":3, "ai_stacks": ["comfyui", "kohya-ss"], "pretrained_models": ["flux-dev", "sdxl-base"] } # If the balance is short, /orders returns 402 with a topup_required block: { "ok": false, "error": "insufficient_balance", "have_usd": 0, "need_usd": 53.5, "deficit_usd": 53.5, "topup_required": true, "topup": { "endpoint": "https://servprivate.com/api/v1/topup", "suggested_usd": 54, "suggested_bonus": 0, "minimum_usd": 30, "maximum_usd": 2000, "bonus_doc": "https://servprivate.com/api/v1/topup/bonus" } } # → POST /api/v1/topup {"amount": 54, "crypto": "XMR"} → wait for confirm → retry POST /api/v1/orders # Anonymous domain check — 26 TLDs in one unauthenticated GET, no token required, JSON out, 1h Redis cache GET /api/v1/domains/check?q=mybrand # Tip: typing a TLD surfaces it FIRST. "mybrand.fr" returns .fr at index 0, then the rest. GET /api/v1/domains/check?q=mybrand.fr # Response (truncated): live availability + Namecheap-beating prices + featured/badge labels # {"ok":true, "results":[ # {"domain":"mybrand.com", "available":true, "price_usd":4.99, "market_usd":15.98, "discount_pct":69, "badge":"BEST DEAL", "featured":true}, # {"domain":"mybrand.io", "available":true, "price_usd":24.99, "market_usd":46.98, "discount_pct":47, "badge":"HOT"}, # {"domain":"mybrand.ai", "available":true, "price_usd":84.99, "market_usd":109.98,"discount_pct":23, "badge":"HOT"} ...]}
MCP kurulumu (60 saniye)
Add bu snippet için sizin MCP-aware client (Claude Desktop, Claude Code, Cursor, Continue, Cline). After restart, ask: "Buy me an İzlanda VPS-S içinde Ubuntu 24.04, paid içinde XMR".
{
"mcpServers": {
"servprivate": {
"url": "https://servprivate.com/mcp"
}
}
}
Tools exposed tarafından MCP sunucu:
list_planslist_locationsquotetopup_bonustopup_createpayment_statusaccount_balancecreate_orderserver_credentialsserver_actionagent_helpdomain_checkdomain_quoteThen call agent_help() inside Claude — bu returns canonical 4-call recipe ile examples, baked içine tool itself.
x402-hafif — single round trip ile USDC
Send X-Ödeme-Mode: x402 header için /api/v1/orderler. sunucu replies HTTP 402 ile USDC (ERC-20) deposit instructions both içinde X-Ödeme-Required header ve içinde JSON body. Send USDC, poll URL, get credentials. Note: bu olur "x402-hafif" — bit-compatible ile x402 clients şu detect facilitator: null ve fall geri için a regular USDC transfer rather than EIP-3009 signing.
# With balance-only orders, /api/v1/orders returns 402 insufficient_balance # when balance is short — the response includes a topup_required block. # Fund USDC directly via: curl -X POST https://servprivate.com/api/v1/topup \ -H 'Content-Type: application/json' \ -d '{"amount":100,"crypto":"USDCETH"}' # → 201 returns {payment_id, address, amount_crypto, bonus_usd: 25, # credited_usd: 125, poll_url, account_token}. # Send USDC (ERC-20) to address, poll poll_url until status="confirmed", # then POST /api/v1/orders with Bearer to deploy from the funded balance.
Test modu (kuru çalışma) — entegrasyon sırasında hiçbir zaman gerçek kripto harcamayın
Herhangi bir /api/v1/* uç noktasına ?dry_run=1 ekleyin (veya X-Dry-Run: 1 başlığı ya da dry_run: true gövde alanı). Yapay sipariş yaklaşık 60 saniye sonra otomatik onaylanır, RFC 5737 IP'leri döndürür ve gerçek bir veritabanı satırına ya da yukarı akış ödeme işlemcisine asla dokunmaz. Mainnet'e geçmeden önce bir ajan entegrasyonunu doğrulamak için mükemmel.
# yok real crypto spent, yok real sunucu provisioned curl -X POST 'https://servprivate.com/api/v1/orders?dry_run=1' \ -H 'Content-Type: application/json' \ -d '{"type":"vps","plan":"IS-S","location":"iceland","billing":1}' # For a topup preview: curl -X POST 'https://servprivate.com/api/v1/topup?dry_run=1' \ -H 'Content-Type: application/json' \ -d '{"amount":200,"crypto":"XMR"}'
Use cases — ne agents do ile ServPrivate
Bunlar olur patterns biz see (ve design için) içinde agentic infrastructure bugün.
Spin up a scraper VPS içinde 30 seconds
A research agent needs a clean IP içinde a specific jurisdiction. It calls create_sipariş, gets credentials, runs job, then terminates.
Agent'a ait işlem tedarik zinciri
A long-running autonomous agent (Claude Yönetind Agent, custom orchestrator) provisions bunun own infrastructure as bu scales horizontally — yok human gatekeeper.
BYO compute için sensitive workloads
A kullanıcı ile gizlilik concerns asks Claude için host an LLM, a Tor relay, a Monero node veya a self-hosted VPN — ödeme, deployment, SSH key handover tüm happen agent-side.
Disposable infrastructure için güvenlik research
Penetration testing tools, malware sandboxes, exit nodes — anything şu benefits başlangıç olma short-lived ve unattributable. Agents create, use, ve destroy.
On-demand GPU için LLM finetuning + inference
Ajanlar 60 saniyede PyTorch / CUDA önceden kurulu H100 SXM5 (80 GB HBM3) başlatır, ince ayar işi çalıştırır, modeli kendi vLLM uç noktalarının arkasına dağıtır, ardından kutuyu yok eder. Öngörülebilir aylık faturalandırma, sınırsız bant genişliği, token başına ücret yok.
Multi-region + multi-product deployment başlangıç one prompt
One agent loop deploys a Linux VPS içinde İzlanda (control pakete), a Windows RDP içinde Hollanda (browser-automation worker), ve an H100 GPU içinde İzlanda (inference). Same token, aynı API, aynı checkout.
Why ServPrivate works için agents
Six properties şu make ServPrivate uniquely well-suited için autonomous ve assisted purchasing.
Sıfır KYC
No isim, email, telefon, ID, captcha. agent pays ve gets sunucu — şu's bu.
Anında dağıtım
VPS live 5 dakikadan kısa sürede. Dedicated typically 15–60 minutes. Yok queue, yok human approval.
20 kripto para
BTC, XMR, ETH, USDT, USDCETH, XRP, LTC, SOL, TRX, TON, DOGE, POL, BCH, DASH, ZEC, ATOM, ETC (+ USDT üzerinde TRC-20/BEP-20/Solana). Same API için tüm.
7 yetki alanı
İzlanda, Panama, Moldova, Romanya, İsviçre, Hollanda, Rusya. Filter tarafından lokasyon.
Test modu
Validate sizin integration end-için-end olmadan spending. dry_run=1 üzerinde her endpoint.
İki akış, tek API
Same endpoint serves Claude-ile-human-paying ve fully autonomous agent-ile-own-wallet.
Discover API içinde one curl
Or open https://servprivate.com/openapi.json için tam OpenAPI 3.1 spec.
SSS
Common sorular about integrating ServPrivate ile AI agents.
Which AI assistants can use bu?
Any MCP-aware client: Claude Desktop, Claude Code, Cursor, Continue, Cline, ve any client implementing Model Context Protocol. For agents olmadan MCP destek (OpenClaw, ChatGPT plugins, custom Python scripts, n8n workflows, Anthropic Yönetind Agents), aynı functionality olur mevcut üzerinden plain HTTPS calls için /api/v1/* — exactly aynı backend, aynı auth, aynı flow.
İlk siparişi vermeden önce hesap açmam gerekiyor mu?
Hayır. Herhangi bir Authorization başlığı olmadan POST /api/v1/orders yapın; yanıt taze bir hesap_tokeni içerecektir (AAAA-BBBB-CCCC-DDDD formatında 16 karakterlik dize). Saklayın. Bu token, sunucunuzu daha sonra yönetmenin tek yoludur — e-postamız yok, kurtarma yolu yok, başka hiçbir şey yok.
Is x402-hafif compatible ile official Coinbase x402 client?
Kısmen. 402 yanıtlarımızı x402_light: true ve facilitator: null ile işaretliyoruz. Spesifikasyona uyumlu bir x402 client, facilitator: null değerini görüp normal bir USDC transferine düşmeli (normal olarak kabul ediyoruz) ya da düzgün şekilde başarısız olmalıdır. 402 içinde dönen alıcı adrese yapılan her USDC ERC-20 transferini kabul ediyoruz; EIP-3009 imza zorunluluğu yoktur. Gerçek bir client bunu talep ettiğinde ilk Coinbase x402 facilitator entegrasyonunu ekleyeceğiz.
How do I test olmadan spending real crypto?
Herhangi bir /api/v1/* URL'sine ?dry_run=1 ekleyin (veya X-Dry-Run: 1 başlığı ya da dry_run: true gövde alanı). "DRY-" ile başlayan yapay bir sipariş_kimliği, sahte ödeme adresi, sahte kimlik bilgileri (RFC 5737 IP'leri) alırsınız; sipariş yaklaşık 60 saniyede otomatik olarak beklemede → onaylandı → aktif ilerler. Yukarı akış ödeme işlemcisine çağrı yok, ödemelerde gerçek veritabanı satırı yok, gerçek sunucu sağlanmaz. MCP araçları aynı dry_run argümanını kabul eder.