Buy VPSまたは専用サーバー付きお客様の AI エージェント — paidで暗号資産, KYC不要.
ServPrivate は AI エージェントが人間の介入なしにサーバーの購入・デプロイ・管理をエンドツーエンドで行えるように設計されています。3 つの統合パス、1 つのドメイン、KYC ゼロ、Monero を含む 20 種類の暗号資産に対応しています。Claude(Desktop / Code / Managed Agents)、OpenClaw、ChatGPT、Cursor、Continue、Cline、n8n、および任意のカスタム HTTP クライアントと互換性があります。
Three integration paths, 1つ domain
お使いのスタックに合うものを選んでください。どれも同じバックエンド、同じアカウント、同じ /api/v1/* ロジックにアクセスします。
MCP —向けClaude, Cursor, Continue, Cline
Add https://servプライバシー.com/mcpにお客様の MCP 構成. Eight tools instantly 利用可能: list_プラン, list_ロケーション, quote, create_注文, 決済_ステータス, サーバー_credentials, サーバー_action, agent_help.
REST —向け任意の HTTP クライアント
/api/v1/ 配下のシンプルな JSON エンドポイントです。Bearer 認証(最初の注文時に自動発行、登録不要)。OpenAPI 3.1 仕様は /openapi.json にあります。curl、Python、Go、HTTP を話せるあらゆるクライアントから利用できます。
x402-軽い — 即時 USDC
向け agents付きその 自前の ウォレット. Send X-決済-Mode: x402に/api/v1/注文 → 402付きUSDC deposit instructionsで1つ round trip. いいえ、facilitator 必須.
Four product lines, 1つ /api/v1/注文 エンドポイント
Pass `type=vps` / `専用` / `rdp` / `gpu`にswitch product line. Same Bearer 認証, 同じ 暗号資産 決済フロー, 同じ ステータス エンドポイント. ロケーションsはgatedごとにproduct — API 〜します reject `type=gpu`で`russia` (NVIDIexport controls)と`type=rdp`で`iceland` / `panama` / `switzerland`.
| 製品ライン | type | Available ロケーション | 月額 | Typical エージェント 使用 case |
|---|---|---|---|---|
| Linux VPS | vps |
7 (IS · PA · MD · RO · CH · NL · RU) | $7.50/mo | Linux サービス (Tor, VPN, mail, scraping bots, web apps). |
| Dedicated Server | dedicated |
7 (IS · PA · MD · RO · CH · NL · RU) | $48.50/mo | ベアメタル isolation (heavy DBs, dual-socket ワークロード, hypervisors). |
| Windows RDP | rdp |
4 (NL · RO · MD · RU) | $11.00/mo | Browser automation, multi-アカウント SMM, Forex / MetaTrader, Windows-のみ apps. |
| GPU AI Hosting 新規 | gpu |
4 (IS · NL · RO · MD) | $122.00/mo | LLM ファインチューニング, イメージ / video 生成, モデル 推論 behind お客様の 自前の API. |
| Anonymous Domain Names 新規 | 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 稼働中 SKU matrix (料金ごとにロケーション, OS オプション, GPU モデル, VRAM). catalogです openとcacheable向け5 分 —なし 認証 必須.
どのように it 機能します — 4 callsからdiscoveryに認証情報
インストールする SDK はありません。OAuth の手続きも不要です。メールアドレスも不要です。最初の呼び出しでアカウントトークンが返され、続く 3 回の呼び出しで注文が保留状態から稼働状態に移行します。
1Discover 何です 利用可能
Read catalogとlistの法域. Both エンドポイントはopen (なし 認証)とcacheable向け5 分.
2作成 注文
選択内容をPOSTします。レスポンスには注文ごとに発行される新しい支払いアドレス、正確な暗号資産金額、有効期限、そしてBearerトークンを送っていない場合は新しいaccount_tokenが含まれます。トークンは必ず保存してください。後でサーバーを管理する唯一の手段であり、当社には復旧経路がありません。
3Payとpoll
Send 暗号資産にアドレス. Then poll 注文 until ステータス reaches "稼働中" (typically 1–5 分向けVPS 一度 depositです detected).
4受け取る 認証情報
Once 注文です 稼働中, fetch サーバー. IP アドレス, root パスワード, SSH portとコンソール URLはreturned. SSH で, お客様'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" }
1つの エンドポイント, four product lines — copy-paste examples
# 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 setup (60秒)
このスニペットを MCP 対応クライアント(Claude Desktop、Claude Code、Cursor、Continue、Cline)に追加してください。再起動後、「アイスランドの VPS-S を Ubuntu 24.04 で XMR 払いで購入して」と尋ねてください。
{
"mcpServers": {
"servprivate": {
"url": "https://servprivate.com/mcp"
}
}
}
Tools exposed による MCP サーバー:
list_planslist_locationsquotetopup_bonustopup_createpayment_statusaccount_balancecreate_orderserver_credentialsserver_actionagent_helpdomain_checkdomain_quote次に Claude 内で agent_help() を呼び出してください。ツール自体に組み込まれた例付きの標準的な 4 ステップのレシピが返されます。
x402-軽い — 単一 round trip付きUSDC
Send X-決済-Mode: x402 headerに/api/v1/注文. サーバー replies HTTP 402付きUSDC (ERC-20) deposit instructions 両方でX-決済-必須 header とでJSON body. Send USDC, poll URL, get 認証情報. Note: このです "x402-軽い" — bit-compatible付きx402 clients その detect facilitator: nullとfall backにregular USDC 転送 ratherより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 mode (dry-運用) — never spend 実際の 暗号資産 while integrating
任意の/api/v1/* エンドポイントに?dry_run=1(またはheader X-Dry-Run: 1、もしくはbody field dry_run: true)を追加します。合成注文は約60秒後に自動で確認済みとなり、RFC 5737のIPを返し、実データベースの行や上流の決済プロセッサには一切触れません。本番環境に触れる前にエージェント連携を検証する用途に最適です。
# なし 実際の 暗号資産 spent,なし 実際の サーバー 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 — 何 agents do付きServPrivate
Theseはpatterns 当社 見る (と design 向け)でagentic インフラ to日.
30秒でscraper VPSを起動
リサーチエージェントは特定の法域のクリーンな IP を必要とします。create_order を呼び出して認証情報を取得し、ジョブを実行してから終了します。
Agent-owned 計算 supply チェーン
長期稼働型の自律エージェント(Claude Managed Agent、カスタムオーケストレーター)は水平スケールに合わせて自らインフラをプロビジョニングします。人間のゲートキーパーは不要です。
BYO 計算向けsensitive ワークロード
ユーザー付きプライバシー concerns asks Claudeにホスト LLM, Tor リレー, Monero ノードまたはセルフホスト VPN — 決済, デプロイ, SSH 鍵 handover all happen エージェント-side.
Disposable インフラ向けsecurity research
Penetration testing tools, マルウェア sandboxes, 出口 ノード — anything その 利点からbeing 短い-livedとunattributable. Agents create, 使用,とdestroy.
On-demand GPU向けLLM ファインチューニング + 推論
AgentはPyTorch / CUDA プリインストール済みのH100 SXM5 (80GB HBM3) を60秒で起動し、finetune jobを実行し、自前のvLLM エンドポイントの背後へモデルをデプロイしてからマシンを破棄できます。月額請求は予測可能で、帯域無制限、トークン単位の料金はありません。
Multi-region + multi-product デプロイから1つ プロンプト
1つの エージェント loop デプロイs Linux VPSでアイスランド (制御 プランe), Windows RDPでオランダ (ブラウザ-automation worker),とH100 GPUでアイスランド (推論). Same トークン, 同じ API, 同じ 決済フロー.
なぜ ServPrivate 機能します向けagents
ServPrivate を自律・補助型の購入に特に適したものにしている 6 つの特性。
KYC不要
いいえ、氏名, メールアドレス, 電話番号, ID, captcha. エージェント paysとgets サーバー — その's it.
即時デプロイ
VPS 稼働中 5分未満で. 専用 typically 15–60 分. いいえ、キュー,なし human approval.
20種類の暗号通貨
BTC、XMR、ETH、USDT、USDCETH、XRP、LTC、SOL、TRX、TON、DOGE、POL、BCH、DASH、ZEC、ATOM、ETC(+ TRC-20/BEP-20/Solana 上の USDT)。すべてで同一の API を使用します。
7 法域
アイスランド, パナマ, モルドバ, ルーマニア, スイス, オランダ, ロシア. Filter による ロケーション.
テストモード
Validate お客様の integration end-に-end なしで spending. dry_実行=1 on すべての エンドポイント.
Two flows, 1つ API
Same エンドポイント serves Claude-付き-human-payingとfully autonomous エージェント-付き-自前の-ウォレット.
Discover APIで1つ curl
Or open https://servプライバシー.com/openapi.json向け完全 OpenAPI 3.1 spec.
FAQ
一般的な 質問 約 integrating ServPrivate付きAI agents.
どの AI assistants 可能 使用 この?
Any MCP-aware クライアント: Claude Desktop, Claude Code, Cursor, Continue, Cline,と任意の クライアント implementing Model Context Protocol.向けagents なしで MCP サポート (OpenClaw, ChatGPT plugins, カスタム Python scripts, n8n workflows, Anthropic Managed Agents), 同じ functionalityです 利用可能 経由 plain HTTPS callsに/api/v1/* — 正確に 同じ バックエンド, 同じ 認証, 同じ flow.
最初の注文前にアカウントは必要ですか?
いいえ. POST /api/v1/注文 なしで 任意の Authorization headerと返信 〜します 含まれます 新しい アカウント_トークン (16-character stringでAAAA-BBBB-CCCC-DDDD format). Store it. That トークンです のみ wayに管理 お客様の サーバー afterwards — 当社 持つなし メールアドレス,なし recovery path, 何もありません else.
Is x402-軽い compatible付きofficial Coinbase x402 クライアント?
部分的に対応しています。当社は402レスポンスにx402_light: trueおよびfacilitator: nullを付与しています。仕様に準拠したx402クライアントは、facilitator: nullを検出した時点で通常のUSDC送金(当社が普通に受け付けます)にフォールバックするか、適切にエラー処理するべきです。当社は402で返却されるrecipientアドレス宛の任意のUSDC ERC-20送金を受け付けます。EIP-3009署名は不要です。実際のクライアントが要求した時点で、本物のCoinbase x402 facilitatorを追加する予定です。
どうすれば test なしで spending 実際の 暗号資産?
任意の/api/v1/* URLに?dry_run=1を追加してください(またはheader X-Dry-Run: 1、もしくはbody field dry_run: true)。"DRY-"で始まる合成order_id、ダミーの支払いアドレス、ダミーの認証情報(RFC 5737のIP)が返り、注文はpending → confirmed → activeへ約60秒かけて自動的に進みます。上流の決済プロセッサへの呼び出しも、paymentsテーブルへの実レコード作成も、実サーバーのプロビジョニングも発生しません。MCPツールも同じdry_run引数を受け付けます。