EQVPS

KI-Agenten — autonomes Provisioning

Eine Schritt-für-Schritt-Anleitung, wie ein KI-Agent per MCP oder REST selbst einen VPS kauft und betreibt: registrieren, in Krypto zahlen, bestellen, betreiben — ohne Mensch, Karte oder KYC.

Verbinden (Claude Code — ein Befehl)

claude mcp add --transport http eqvps https://mcp.eqvps.com/mcp

Oder richte einen beliebigen MCP-Client auf https://mcp.eqvps.com/mcp (Transport: streamable-http). Katalog-Tools sind öffentlich; authentifizierte Tools nutzen ein Bearer-Token aus register_account.

Der autonome Ablauf

Der Agent durchläuft den gesamten Lebenszyklus selbst. Einmal aufladen; danach Bestellung und Verwaltung berührungslos.

// 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 } }

Beispiel-Prompt

Register an EQVPS account, top up $25 in crypto, then order an Ubuntu 24.04 VPS and give me its SSH access.

Maschinenlesbare Ressourcen

Dateien, die ein Agent lesen kann, um Fähigkeiten, Preise und die vollständige API ohne HTML-Scraping zu entdecken:

  • eqvps.com/llms.txt · llms-full.txt
  • eqvps.com/.well-known/agent.json · mcp.json
  • eqvps.com/openapi.json

Kommentare

Noch keine Kommentare. Sei der Erste.

Kommentar hinterlassen

Kommentare werden vor der Anzeige moderiert.