AI agents — autonomous provisioning
A step-by-step guide for an AI agent to buy and run a VPS on its own over MCP or REST: register, pay in crypto, order, operate — no human, no card, no KYC.
Connect (Claude Code — one command)
claude mcp add --transport http eqvps https://mcp.eqvps.com/mcpOr point any MCP client at https://mcp.eqvps.com/mcp (transport: streamable-http). Catalog tools are public; authenticated tools use a Bearer token from register_account.
The autonomous flow
An agent runs the whole lifecycle itself. Fund once; after that, ordering and management are hands-off.
// 1. Discover plans (no auth)
list_plans()
// 2. Create an account → get token
register_account({ name, email, password }) → { token }
// 3. (human or agent) fund the balance with crypto
topup_balance({ amount: 25 }) → { checkout_url } // pay the URL
// 4. Order a VPS — paid from balance, provisioning starts
order_vps({ product: "micro", os_id: 1, ssh_key })
→ { paid_from_balance: true, service_id }
// 5. Poll until ready, then read SSH access
get_vps_status({ id: service_id }) → { status: "active", access: { command } }Example prompt
Register an EQVPS account, top up $25 in crypto, then order an Ubuntu 24.04 VPS and give me its SSH access.Machine-readable resources
Files an agent can read to discover capabilities, pricing and the full API without scraping HTML:
- eqvps.com/llms.txt · llms-full.txt
- eqvps.com/.well-known/agent.json · mcp.json
- eqvps.com/openapi.json
Comments
No comments yet. Be the first.