Agenti IA — provisioning autonomo
Una guida passo per passo per un agente IA che compra e gestisce un VPS da solo tramite MCP o REST: registrati, paga in crypto, ordina, opera — niente umano, niente carta, niente KYC.
Connetti (Claude Code — un comando)
claude mcp add --transport http eqvps https://mcp.eqvps.com/mcpOppure punta qualsiasi client MCP a https://mcp.eqvps.com/mcp (transport: streamable-http). Gli strumenti del catalogo sono pubblici; quelli autenticati usano un token Bearer da register_account.
Il flusso autonomo
Un agente gestisce da solo l'intero ciclo di vita. Finanzia una volta; dopodiché ordini e gestione sono automatici.
// 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 } }Prompt di esempio
Register an EQVPS account, top up $25 in crypto, then order an Ubuntu 24.04 VPS and give me its SSH access.Risorse leggibili dalle macchine
File che un agente può leggere per scoprire capacità, prezzi e l'API completa senza fare scraping dell'HTML:
- eqvps.com/llms.txt · llms-full.txt
- eqvps.com/.well-known/agent.json · mcp.json
- eqvps.com/openapi.json
Commenti
Ancora nessun commento. Sii il primo.