Automate everything. Control it all.

Full REST API and MCP server for AI agents. Manage your hosting programmatically or let AI do it for you.

create-vps.ts
// Create a VPS instance via API
const response = await fetch('https://hosting.site.quest/api/v1/vps/create', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer sq_your_api_key',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    hostsystem: 'de_epyc',
    os: 'ubuntu-24.04',
    cores: 4,
    mem: 8,
    disk: 80,
    name: 'my-app-server',
  }),
});

const { data } = await response.json();
console.log(data.orderId); // "ord_a1b2c3"

Developer-first infrastructure

Every feature available in the dashboard is also available through our API.

RESTful API

Full-featured REST API for managing every aspect of your infrastructure. Create, configure, and destroy VPS instances programmatically. Manage domains, DNS records, backups, and billing — all through clean, well-documented endpoints.

  • OpenAPI specification available
  • Token-based authentication
  • Rate limiting with generous quotas
  • Webhook support for async events
api-response.json
GET /api/v1/vps  200 OK

{
  "data": [{
    "id": "6817a3f2c9e4b10d3a5f8012",
    "name": "my-app-server",
    "status": "RUNNING",
    "os": "ubuntu-24.04",
    "cores": 4,
    "mem": 8,
    "nvme": 100,
    "ip": "203.0.113.42",
    "datacenter": "fsn1",
    "country": "DE",
    "cpuUsage": 23.5,
    "memUsage": 61.2,
    "availability": 99.98
  }]
}

MCP Server Integration

Connect your AI tools directly to your hosting infrastructure using the Model Context Protocol. Manage servers, query metrics, and automate deployments through conversational AI agents like Claude, ChatGPT, or your own custom agents.

  • Works with Claude, ChatGPT, and custom agents
  • Real-time server management via chat
  • Secure tool-based access control
  • No custom integration code needed
Copilot Chat

Check my production server and create a backup before I deploy

I'll check your server status and create a backup.

mcp_sitequest_get_vps
{ "id": "6817a3f2c9e4b10d3a5f8012" }

Your server my-app-server is running.

4 cores / 8 GB RAM (39% used) / Ubuntu 24.04 / Up 10 days

mcp_sitequest_create_backup
{ "id": "6817a3f2c9e4b10d3a5f8012", "label": "pre-deploy" }

Backup pre-deploy created. You're good to deploy.

SSH & Remote Execution

Execute commands remotely, manage files via SFTP, and automate server configuration — all through the API. No SSH client needed — run commands directly from your scripts or AI agents.

  • Remote command execution via API
  • SFTP file read and write
  • Security configuration management
  • No SSH client required
terminal
root@my-app-server:~$ uptime
 14:32:01 up 10 days, 4:12, 0 users, load average: 0.12, 0.08, 0.05

root@my-app-server:~$ df -h /
Filesystem  Size  Used Avail Use%  Mounted on
/dev/sda1    80G   23G   54G  30%  /

root@my-app-server:~$ free -m
              total  used  free  shared  available
Mem:          8192   3241  3504  128     4822
Swap:         2048   0     2048

root@my-app-server:~$ git pull && systemctl restart myapp
Already up to date.
myapp.service restarted successfully.

root@my-app-server:~$ _

What you can build

From simple scripts to full automation pipelines.

Automated Server Management

Create, configure, and manage VPS instances programmatically. Automate backups, manage firewall rules, and monitor resources — all from your own scripts or tools.

AI-Powered Server Management

Ask your AI agent to check server health, adjust firewall rules, create backups, or deploy new instances. The MCP integration turns natural language into infrastructure actions.

Scripted Deployments

Deploy your applications by executing commands remotely via the API. Upload files with SFTP, run install scripts, and restart services — no manual SSH sessions needed.

DNS & Domain Automation

Register domains, manage DNS records, configure WHOIS privacy, and handle DNSSEC — all programmatically. Keep your DNS in sync with your infrastructure automatically.

Start building with the API

Get your API key from the dashboard and start automating in minutes.