通过您的 AI 代理购买 VPS 或独立服务器 — 加密货币支付,No KYC。
ServPrivate 是首家面向 AI 代理的离岸托管服务商。AI 代理(Claude、ChatGPT、OpenClaw、Cursor、Continue、Cline、自定义 Python)可通过 MCP server、REST API 或 x402-light 端到端购买离岸 VPS 或独立服务器——支持 Bitcoin、Monero、USDC 或其他 17 种加密货币支付。无需 KYC,无需邮箱,无需验证码。在包括冰岛、巴拿马和瑞士在内的 7 个离岸司法管辖区即时自动部署。
三种集成方式,同一域名
选择适合您技术栈的方式。它们都访问同一个后端、同一套账户、同一套 /api/v1/* 逻辑。
MCP — 适用于 Claude、Cursor、Continue、Cline
将 https://servprivate.com/mcp 添加至您的 MCP 配置。八项工具立即可用:list_plans、list_locations、quote、create_order、payment_status、server_credentials、server_action、agent_help。
REST — 适用于任意 HTTP 客户端
纯 JSON 接口,位于 /api/v1/ 下。Bearer 鉴权(首次下单时自动签发,无需注册)。OpenAPI 3.1 规范位于 /openapi.json。支持 curl、Python、Go 及任何可发起 HTTP 请求的工具。
x402-light — 即时 USDC 支付
适用于拥有自有钱包的代理。向 /api/v1/orders 发送 X-Payment-Mode: x402,服务器将在一次往返中以 USDC 存款说明进行 402 响应。无需中间商。
四条产品线,一个 /api/v1/orders 端点
传入 `type=vps` / `dedicated` / `rdp` / `gpu` 切换产品线。相同的 Bearer 认证、相同的加密结账、相同的状态端点。地区按产品限制——API 将拒绝 `russia` 中的 `type=gpu`(NVIDIA 出口管制)以及 `iceland` / `panama` / `switzerland` 中的 `type=rdp`。
| 产品线 | type | 可用地区 | 起价 | 典型 Agent 用例 |
|---|---|---|---|---|
| Linux VPS | vps |
7 (IS · PA · MD · RO · CH · NL · RU) | $7.50/mo | Linux 服务(Tor、VPN、邮件、抓取机器人、Web 应用)。 |
| Dedicated Server | dedicated |
7 (IS · PA · MD · RO · CH · NL · RU) | $48.50/mo | 裸机隔离(大型数据库、双路工作负载、虚拟机管理器)。 |
| Windows RDP | rdp |
4 (NL · RO · MD · RU) | $11.00/mo | 浏览器自动化、多账号 SMM、Forex / MetaTrader、仅限 Windows 应用。 |
| GPU AI Hosting 新品 | gpu |
4 (IS · NL · RO · MD) | $122.00/mo | LLM 微调、图像/视频生成、挂载自有 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 返回实时 SKU 矩阵(各地区定价、操作系统选项、GPU 型号、显存)。目录公开,可缓存 5 分钟,无需认证。
工作原理 — 从发现到凭证的 4 次调用
无需安装 SDK。无需 OAuth 流程。无需邮箱。第一次调用返回您的账户令牌;接下来三次将订单从待处理推进至激活。
1发现可用资源
读取产品目录和司法管辖区列表。两个接口均为开放接口(无需鉴权),可缓存 5 分钟。
2创建订单
POST 您的选择。响应中包含一个每笔订单独立生成的全新支付地址、精确的加密货币金额、到期时间,以及——若未发送 Bearer——一个新的 account_token。请务必保存该 TOKEN:这是日后管理服务器的唯一凭证,我们没有任何找回途径。
3完成付款并轮询
将加密货币发送至指定地址,然后轮询订单直至状态变为"active"(检测到存款后,VPS 通常需 1–5 分钟)。
4获取凭证
订单激活后,获取服务器信息。返回内容包括 IP 地址、root 密码、SSH 端口及控制台 URL。SSH 登录即完成部署。
# 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" }
一个端点,四条产品线——可直接复制的示例
# 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 配置(60 秒完成)
将此代码片段添加至支持 MCP 的客户端(Claude Desktop、Claude Code、Cursor、Continue、Cline)。重启后,输入:"帮我用 XMR 购买一台冰岛 VPS-S,系统为 Ubuntu 24.04"。
{
"mcpServers": {
"servprivate": {
"url": "https://servprivate.com/mcp"
}
}
}
MCP 服务器提供的工具:
list_planslist_locationsquotetopup_bonustopup_createpayment_statusaccount_balancecreate_orderserver_credentialsserver_actionagent_helpdomain_checkdomain_quote然后在 Claude 中调用 agent_help()——它将返回内置于工具本身的标准四步操作说明及示例。
x402-light — 单次往返完成 USDC 支付
向 /api/v1/orders 发送 X-Payment-Mode: x402 请求头。服务器将返回 HTTP 402,并在 X-Payment-Required 请求头和 JSON 正文中同时附上 USDC(ERC-20)存款说明。发送 USDC、轮询 URL,即可获取凭证。注意:这是"x402-light"——与能够检测到 facilitator: null 并回退至常规 USDC 转账(而非 EIP-3009 签名)的 x402 客户端在协议层面兼容。
# 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.
测试模式(dry-run)— 集成期间无需消耗真实加密货币
向任意 /api/v1/* 接口添加 ?dry_run=1(或请求头 X-Dry-Run: 1,或请求体字段 dry_run: true)。系统将生成一个模拟订单,约 60 秒后自动确认,返回 RFC 5737 IP 地址,且不会触碰任何真实数据库记录或上游支付处理器。非常适合在接入主网之前验证代理集成。
# 不消耗真实加密货币,不部署真实服务器 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"}'
使用场景 — AI 代理如何使用 ServPrivate
这些是我们在当今代理基础设施中观察到(并为之设计)的模式。
30 秒内启动爬虫 VPS
研究代理需要在特定司法管辖区获取一个干净的 IP。它调用 create_order,获取凭证,执行任务,然后终止。
代理自有的计算供应链
长期运行的自主代理(Claude Managed Agent、自定义编排器)在水平扩展时自行供应基础设施——无需人工把关。
敏感工作负载的自有计算
注重隐私的用户让 Claude 托管 LLM、Tor 中继、Monero 节点或自托管 VPN——支付、部署、SSH 密钥交接均由代理端完成。
安全研究的一次性基础设施
渗透测试工具、恶意软件沙箱、出口节点——凡是受益于短暂性和不可追溯性的场景。代理创建、使用并销毁。
按需 GPU:LLM 微调与推理
Agent 在 60 秒内启动预装 PyTorch / CUDA 的 H100 SXM5 (80 GB HBM3),运行微调任务,将模型部署至自有 vLLM 端点,完成后销毁实例。按月计费可预测,无限带宽,无 token 费用。
一次提示完成多地区、多产品部署
单个 Agent 循环在冰岛部署 Linux VPS(控制平面),在荷兰部署 Windows RDP(浏览器自动化工作节点),在冰岛部署 H100 GPU(推理)。相同 token、相同 API、相同结账流程。
为什么 ServPrivate 适合 AI 代理
六项特性使 ServPrivate 特别适合自主和辅助购买。
零 KYC
无需姓名、邮箱、电话、身份证件或验证码。代理付款后直接获得服务器——仅此而已。
即时部署
VPS 5 分钟内上线。独立服务器通常需 15–60 分钟。无排队,无需人工审批。
20 种加密货币
BTC、XMR、ETH、USDT、USDC、XRP、LTC、SOL、TRX、TON、DOGE、POL、BCH、DASH、ZEC、ATOM、ETC(+ USDT TRC-20/BEP-20/Solana 变体)。所有货币使用同一套 API。
7 个司法管辖区
冰岛、巴拿马、摩尔多瓦、罗马尼亚、瑞士、荷兰、俄罗斯。按位置筛选。
测试模式
无需消费即可端到端验证集成。在所有接口使用 dry_run=1。
两种流程,一套 API
同一接口同时服务于"Claude + 人工付款"和"完全自主代理自有钱包"两种场景。
常见问题
关于将 ServPrivate 与 AI 代理集成的常见问题。
哪些 AI 助手可以使用此功能?
任何支持 MCP 的客户端均可:Claude Desktop、Claude Code、Cursor、Continue、Cline,以及任何实现了模型上下文协议的客户端。对于不支持 MCP 的代理(OpenClaw、ChatGPT 插件、自定义 Python 脚本、n8n 工作流、Anthropic Managed Agents),相同功能可通过向 /api/v1/* 发起普通 HTTPS 请求实现——后端完全相同,鉴权方式相同,流程相同。
首次下单前需要注册账号吗?
不需要。不携带任何 Authorization 请求头直接 POST /api/v1/orders,响应中将包含一个新的 account_token(格式为 AAAA-BBBB-CCCC-DDDD 的 16 字符字符串)。请务必保存。该 token 是此后管理服务器的唯一凭证——我们没有邮箱,没有找回途径,别无他法。
x402-light 是否兼容官方 Coinbase x402 客户端?
部分兼容。我们在 402 响应中标注 x402_light: true 和 facilitator: null。符合规范的 x402 客户端应能检测到 facilitator: null,并回退至常规 USDC 转账(我们正常接受)或优雅失败。我们接受向 402 响应中返回的收款地址发起的任何 USDC ERC-20 转账——无需 EIP-3009 签名。一旦有真实客户端提出需求,我们将接入正式的 Coinbase x402 中间商。
如何在不消耗真实加密货币的情况下进行测试?
向任意 /api/v1/* URL 添加 ?dry_run=1(或请求头 X-Dry-Run: 1,或请求体字段 dry_run: true)。您将获得一个以"DRY-"开头的模拟 order_id、虚假付款地址、虚假凭证(RFC 5737 IP),订单将在约 60 秒内自动从 pending → confirmed → active。不会向上游支付处理器发起任何调用,不在 payments 表中写入真实数据库记录,也不会部署任何真实服务器。MCP 工具接受相同的 dry_run 参数。