[Ana Sayfa](https://servprivate.com/tr) /
Agent API





AI agent VPS barındırma · MCP · REST · x402


# 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.


[Read OpenAPI spec](https://servprivate.com/openapi.json)
[Setup MCP içinde 60s](#mcp)


Claude Desktop
Claude Code
ChatGPT
Cursor
Continue
OpenClaw
curl






******
claude — agent buying H100 GPU


> user: spin up an H100 in Iceland for a Llama finetune, pay USDC
claude calls servprivate/create_order type=gpu...

typegpu / IS-L
gpu1× H100 SXM5 80GB
amount1,294.30 USDC
osubuntu-22-cuda
statusactive ✓
sshroot@213.x.x.x
jupyterhttps://213…:8888






KYC yok
MCP sunucu
REST + OpenAPI
x402-hafif
20 kripto para
Test modu




## 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


### 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


### 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-light


### 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.




******curl — balance-only two-step: topup, then deploy

# 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**


******curl — POST /api/v1/orderler için each product

# 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".




******~/.claude/mcp_settings.json — Cursor / Continue / Cline equivalent

{
"mcpServers": {
"servprivate": {
"url": "https://servprivate.com/mcp"
}
}
}


**Tools exposed tarafından MCP sunucu:**


list_plans
list_locations
quote
topup_bonus
topup_create
payment_status
account_balance
create_order
server_credentials
server_action
agent_help
domain_check
domain_quote



Then 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.




******x402-light — single round trip with USDC

# 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.




******dry-run — never spend real crypto

# 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.


[Read OpenAPI spec](https://servprivate.com/openapi.json)
[Keşif dosyası](https://servprivate.com/.well-known/agent.json)






## 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.


## Structured data (JSON-LD)

```json
{
    "@context": "https://schema.org",
    "@type": "Organization",
    "@id": "https://servprivate.com/#organization",
    "name": "ServPrivate",
    "alternateName": "ServPrivacy",
    "url": "https://servprivate.com",
    "description": "7 offshore yargı alanında offshore VPS ve dedicated sunucular. KYC yok, log yok, yalnızca kripto. Gizlilik mimariyle sağlanır.",
    "logo": {
        "@type": "ImageObject",
        "url": "https://servprivate.com/ServPrivate.webp",
        "width": 512,
        "height": 512
    },
    "foundingDate": "2025",
    "areaServed": [
        {
            "@type": "Country",
            "name": "Iceland"
        },
        {
            "@type": "Country",
            "name": "Panama"
        },
        {
            "@type": "Country",
            "name": "Moldova"
        },
        {
            "@type": "Country",
            "name": "Romania"
        },
        {
            "@type": "Country",
            "name": "Switzerland"
        },
        {
            "@type": "Country",
            "name": "Netherlands"
        },
        {
            "@type": "Country",
            "name": "Russia"
        }
    ],
    "knowsAbout": [
        "Offshore hosting",
        "Offshore VPS",
        "Bare-metal dedicated servers",
        "DMCA-ignored hosting",
        "No KYC hosting",
        "Cryptocurrency payments",
        "Privacy engineering",
        "Token-based authentication",
        "Anonymous domain name registration",
        "No-KYC domain registrar",
        "WHOIS privacy",
        "Cheap .com domains",
        "Crypto-paid domain names",
        "NVIDIA GPU compute",
        "Windows RDP hosting",
        "Agentic commerce"
    ],
    "contactPoint": {
        "@type": "ContactPoint",
        "contactType": "customer support",
        "url": "https://servprivate.com/contact",
        "availableLanguage": [
            "en",
            "ru",
            "zh",
            "es",
            "fr",
            "de",
            "pt",
            "ar",
            "ja",
            "ko",
            "hi",
            "id",
            "it",
            "tr",
            "fa",
            "vi"
        ]
    },
    "sameAs": [
        "https://servprivate.com/canary",
        "https://servprivate.com/press"
    ]
}
```

```json
{
    "@context": "https://schema.org",
    "@type": "WebSite",
    "@id": "https://servprivate.com/#website",
    "url": "https://servprivate.com",
    "name": "ServPrivate",
    "publisher": {
        "@id": "https://servprivate.com/#organization"
    },
    "inLanguage": [
        "en",
        "ru",
        "zh",
        "es",
        "fr",
        "de",
        "pt",
        "ar",
        "ja",
        "ko",
        "hi",
        "id",
        "it",
        "tr",
        "fa",
        "vi"
    ]
}
```

```json
{
    "@context": "https://schema.org",
    "@type": "TechArticle",
    "headline": "Buy a VPS veya dedicated sunucu ile an AI agent — MCP API, crypto, yok KYC",
    "description": "Buy offshore VPS ve dedicated sunucular ile any AI agent (Claude, ChatGPT, OpenClaw, Cursor, Continue, Cline) üzerinden MCP sunucu, REST API veya x402-hafif. Pay içinde Bitcoin, Monero, USDC veya 11 diğer cryptocurrencies. Yok KYC, yok email, yok signup. Instant deployment 7 offshore yargı alanında.",
    "author": {
        "@id": "https://servprivate.com/#organization"
    },
    "publisher": {
        "@id": "https://servprivate.com/#organization"
    },
    "datePublished": "2026-04-28",
    "dateModified": "2026-05-28T11:23:56+00:00",
    "mainEntityOfPage": "https://servprivate.com/agents",
    "inLanguage": "tr",
    "about": [
        {
            "@type": "Thing",
            "name": "Agentic commerce"
        },
        {
            "@type": "Thing",
            "name": "Model Context Protocol"
        },
        {
            "@type": "Thing",
            "name": "x402 payment protocol"
        },
        {
            "@type": "Thing",
            "name": "AI agents"
        },
        {
            "@type": "Thing",
            "name": "Offshore server hosting"
        },
        {
            "@type": "Thing",
            "name": "NVIDIA GPU compute"
        },
        {
            "@type": "Thing",
            "name": "Windows RDP hosting"
        },
        {
            "@type": "Thing",
            "name": "LLM inference infrastructure"
        },
        {
            "@type": "Thing",
            "name": "AI training compute"
        }
    ],
    "keywords": "AI agent hosting, MCP server hosting, Claude buy VPS, Claude buy GPU, Claude buy RDP, OpenClaw VPS, OpenClaw GPU, x402 hosting, agentic commerce, autonomous agent server, programmatic VPS purchase, programmatic GPU purchase, programmatic RDP purchase, no-KYC API, crypto checkout API, NVIDIA H100 API, RTX 4090 hourly, GPU autonomous purchase, LLM finetune GPU agent, agent buy Linux server, agent buy Windows RDP, agent buy AI compute"
}
```

```json
{
    "@context": "https://schema.org",
    "@type": "WebAPI",
    "name": "ServPrivate Agent API",
    "description": "Buy offshore VPS ve dedicated sunucular ile any AI agent (Claude, ChatGPT, OpenClaw, Cursor, Continue, Cline) üzerinden MCP sunucu, REST API veya x402-hafif. Pay içinde Bitcoin, Monero, USDC veya 11 diğer cryptocurrencies. Yok KYC, yok email, yok signup. Instant deployment 7 offshore yargı alanında.",
    "documentation": "https://servprivate.com/agents",
    "termsOfService": "https://servprivate.com/tos",
    "provider": {
        "@id": "https://servprivate.com/#organization"
    },
    "potentialAction": {
        "@type": "BuyAction",
        "target": {
            "@type": "EntryPoint",
            "urlTemplate": "https://servprivate.com/api/v1/orders",
            "httpMethod": "POST",
            "contentType": "application/json"
        }
    },
    "subjectOf": [
        {
            "@type": "CreativeWork",
            "name": "OpenAPI specification",
            "url": "https://servprivate.com/openapi.json"
        },
        {
            "@type": "CreativeWork",
            "name": "MCP server endpoint",
            "url": "https://servprivate.com/mcp"
        },
        {
            "@type": "CreativeWork",
            "name": "Agent discovery file",
            "url": "https://servprivate.com/.well-known/agent.json"
        }
    ]
}
```

```json
{
    "@context": "https://schema.org",
    "@type": "SoftwareApplication",
    "name": "ServPrivate MCP Server",
    "applicationCategory": "DeveloperApplication",
    "operatingSystem": "Cross-platform (any MCP-aware client)",
    "description": "MCP-compatible sunucu exposing 8 tools için discover, fiyat, sipariş, deploy ve yönetin offshore VPS veya dedicated sunucular. Compatible ile Claude Desktop, Claude Code, Cursor, Continue, Cline ve any MCP client.",
    "url": "https://servprivate.com/mcp",
    "offers": {
        "@type": "Offer",
        "price": "0",
        "priceCurrency": "USD"
    },
    "softwareVersion": "1.3.0",
    "featureList": "list_plans, list_locations, quote, topup_bonus, topup_create, payment_status, account_balance, create_order, server_credentials, server_action, agent_help"
}
```

```json
{
    "@context": "https://schema.org",
    "@type": "OfferCatalog",
    "name": "ServPrivate agent-purchasable products",
    "itemListElement": [
        {
            "@type": "Offer",
            "name": "Linux VPS",
            "price": "7.50",
            "priceCurrency": "USD",
            "description": "KVM Linux VPS in 7 jurisdictions; type=vps in /api/v1/orders.",
            "url": "https://servprivate.com/vps"
        },
        {
            "@type": "Offer",
            "name": "Dedicated Server",
            "price": "48.50",
            "priceCurrency": "USD",
            "description": "Bare-metal in 7 jurisdictions; type=dedicated in /api/v1/orders.",
            "url": "https://servprivate.com/dedicated"
        },
        {
            "@type": "Offer",
            "name": "Windows RDP",
            "price": "11.00",
            "priceCurrency": "USD",
            "description": "Full administrator Windows Server / Win 11 Pro in 4 jurisdictions; type=rdp in /api/v1/orders.",
            "url": "https://servprivate.com/rdp"
        },
        {
            "@type": "Offer",
            "name": "GPU AI Hosting",
            "price": "122.00",
            "priceCurrency": "USD",
            "description": "NVIDIA RTX 4090 / RTX 5090 / H100 SXM5 with CUDA 12 + cuDNN preinstalled in 4 jurisdictions; type=gpu in /api/v1/orders.",
            "url": "https://servprivate.com/gpu"
        },
        {
            "@type": "Offer",
            "name": "Anonymous Domain Names",
            "price": "4.99",
            "priceCurrency": "USD",
            "description": "26 TLDs, no KYC, free WHOIS privacy, paid from balance. .com from $4.99/yr (-69% vs Namecheap). Live availability check via GET /api/v1/domains/check?q=name (no auth).",
            "url": "https://servprivate.com/domains"
        }
    ]
}
```

```json
{
    "@context": "https://schema.org",
    "@type": "HowTo",
    "name": "How için buy an offshore sunucu ile an AI agent",
    "description": "Five-step recipe için any AI agent (Claude, ChatGPT, OpenClaw, custom) için discover, sipariş, pay ve deploy a VPS veya dedicated sunucu üzerinde ServPrivate.",
    "totalTime": "PT3M",
    "estimatedCost": {
        "@type": "MonetaryAmount",
        "currency": "USD",
        "value": "13.99"
    },
    "tool": [
        {
            "@type": "HowToTool",
            "name": "curl"
        },
        {
            "@type": "HowToTool",
            "name": "Claude Desktop / Claude Code (MCP)"
        }
    ],
    "step": [
        {
            "@type": "HowToStep",
            "position": 1,
            "name": "Discover ne olur mevcut",
            "text": "GET https://servprivate.com/api/v1/catalog"
        },
        {
            "@type": "HowToStep",
            "position": 2,
            "name": "Create sipariş",
            "text": "POST /api/v1/topup with amount (>=30 USD) and crypto, send the crypto, poll /api/v1/topup/{id} until status=confirmed"
        },
        {
            "@type": "HowToStep",
            "position": 3,
            "name": "Pay ve poll",
            "text": "POST /api/v1/orders with type/plan/location/os/billing — balance is debited and the server is active immediately"
        },
        {
            "@type": "HowToStep",
            "position": 4,
            "name": "Receive credentials",
            "text": "GET /api/v1/servers/{id} for IP + root password"
        }
    ]
}
```

```json
{
    "@context": "https://schema.org",
    "@type": "FAQPage",
    "mainEntity": [
        {
            "@type": "Question",
            "name": "Which AI assistants can use bu?",
            "acceptedAnswer": {
                "@type": "Answer",
                "text": "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."
            }
        },
        {
            "@type": "Question",
            "name": "İlk siparişi vermeden önce hesap açmam gerekiyor mu?",
            "acceptedAnswer": {
                "@type": "Answer",
                "text": "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."
            }
        },
        {
            "@type": "Question",
            "name": "Is x402-hafif compatible ile official Coinbase x402 client?",
            "acceptedAnswer": {
                "@type": "Answer",
                "text": "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."
            }
        },
        {
            "@type": "Question",
            "name": "How do I test olmadan spending real crypto?",
            "acceptedAnswer": {
                "@type": "Answer",
                "text": "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."
            }
        }
    ]
}
```

```json
{
    "@context": "https://schema.org",
    "@type": "BreadcrumbList",
    "itemListElement": [
        {
            "@type": "ListItem",
            "position": 1,
            "name": "Ana Sayfa",
            "item": "https://servprivate.com/"
        },
        {
            "@type": "ListItem",
            "position": 2,
            "name": "Agent API",
            "item": "https://servprivate.com/agents"
        }
    ]
}
```

