MCP server

Connect Claude (or any MCP-compatible client) to your ServersCamp account. Pricing tiers, resource catalog, and - soon - your own VMs and databases exposed as structured tools, so an AI agent can answer questions like "cheapest VM with at least 8 GB RAM" or "compare all PostgreSQL classes under €50/mo" without you copy-pasting from the pricing page.

Status: read-only catalog. The server currently exposes pricing tiers and class metadata for VMs, block storage, networks, managed PostgreSQL, and S3 buckets. Account-scoped tools (list your VMs, create one, attach a volume) are next on the roadmap. We'll move them to the table below as they ship.

Connection

The server lives at:

Endpoint
https://platform.serverscamp.com/mcp

It speaks MCP over HTTPS. No local install, no proxy, no credentials for the read-only tools.

Claude (web)

  1. Open claude.ai → Settings → Connectors.
  2. Click Add custom connector.
  3. Paste https://platform.serverscamp.com/mcp as the URL.
  4. Save. Claude will surface ServersCamp tools when relevant. Try the prompts below.

Claude Desktop

Recent versions of Claude Desktop expose the same connector UI as the web. Settings → Connectors → Add custom, paste the URL.

If you prefer a config file, edit claude_desktop_config.json (location: ~/Library/Application Support/Claude/ on macOS, %APPDATA%\Claude\ on Windows):

claude_desktop_config.json
{
  "mcpServers": {
    "serverscamp": {
      "url": "https://platform.serverscamp.com/mcp"
    }
  }
}

Cursor

Cursor reads MCP servers from ~/.cursor/mcp.json (global) or .cursor/mcp.json (per-project). Same shape as Claude Desktop:

.cursor/mcp.json
{
  "mcpServers": {
    "serverscamp": {
      "url": "https://platform.serverscamp.com/mcp"
    }
  }
}

After editing the file, open Cursor Settings → MCP and toggle the server on. The tool list should populate within a second.

VS Code (with MCP extension)

VS Code's built-in MCP support reads .vscode/mcp.json (per-workspace) or user settings. Workspace config:

.vscode/mcp.json
{
  "servers": {
    "serverscamp": {
      "type": "http",
      "url": "https://platform.serverscamp.com/mcp"
    }
  }
}

Cline (VS Code extension)

Cline keeps its server list in cline_mcp_settings.json. Open the Cline panel, click the MCP icon, then Edit MCP Settings:

cline_mcp_settings.json
{
  "mcpServers": {
    "serverscamp": {
      "url": "https://platform.serverscamp.com/mcp",
      "disabled": false,
      "autoApprove": []
    }
  }
}

Other MCP clients

Continue, Zed, and anything else that speaks MCP over HTTPS can point at the same URL. Configuration shape varies; the URL doesn't. If your client expects a stdio-only server, wrap the HTTPS endpoint with the mcp-remote bridge.

Available tools

What the server currently exposes. Read-only, no auth required:

ToolReturns
list_vm_classesVM (compute, instance) catalog: CPU and RAM tiers with per-hour pricing.
list_storage_classesBlock storage (volumes) catalog: IOPS, throughput, replication, €/GB/hour.
list_network_classesNetwork and bandwidth catalog: caps, included traffic, overage per GB.
list_postgres_classesManaged PostgreSQL catalog: compute and storage pricing per class.
list_bucket_classesS3-compatible bucket catalog: compute, storage, egress pricing.
list_extra_pricesFixed-price items not tied to a class: Public IP, Floating IP, additional Routers (first one free), backup snapshot storage.

All prices are returned as integer millicents. Convert to EUR: eur = millicents / 10000. Monthly cost: hourly_eur × 720 (24 hours × 30 days). Disk overage is per-GB-month or per-TB-month depending on the class - field names disambiguate.

The data backing these tools is the same that powers the pricing page and the calculator. When we change a tier or add a new managed service, the MCP server reflects it without a redeploy on either side.

Example prompts

Things that work today:

  • "Cheapest VM with at least 8 GB RAM."
  • "Compare all PostgreSQL classes under €50 a month."
  • "What's the included egress on the bucket-standard tier?"
  • "Estimate monthly cost for a 4 vCPU VM with 200 GB premium storage and a public IP."
  • "List storage classes that support more than 5,000 sustained IOPS."

The agent answers from current platform data, not from a frozen page snapshot, so the numbers stay accurate as we update tiers.

Roadmap

Authenticated, account-scoped tools are next. In rough order:

  • List your VMs, databases, buckets, networks.
  • Create, resize, and delete a VM through the same flow as the REST API.
  • Read billing: current spend, projected end-of-month, anomaly hints.
  • Generate Terraform plans against your real VPCs.
  • Stream logs and metrics for a running instance.

If a specific tool would unlock a workflow for you, tell us in a ticket. We're picking the next batch by user request, not by a roadmap deck.