MCP server

Connect Claude (or any MCP-compatible client) to the live ServersCamp catalog. Prices, hardware generations, disk classes, benchmark results and architecture facts exposed as structured tools, so an AI agent can answer questions like "cheapest VM with at least 8 GB RAM" or "quote me a production Postgres VM with a 100 GB database disk" from current platform data, not a stale page snapshot.

Status: public read-only catalog. No auth, no account access: the server exposes the live price list plus the benchmark and architecture data behind it.

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 catalog: hardware generations, Burst/Sustained profiles, vCPU/RAM shapes with per-hour pricing.
list_hardware_classesHardware generations with in-guest Geekbench context and the per-generation disk limits.
list_storage_classesDisk classes and speed tiers: IOPS and throughput limits, size bounds, the free root-disk allowance, per-GB-hour prices.
list_extra_pricesFixed-price items not tied to a class: Public IP, Floating IP, additional Routers (first one free), backup storage.
list_benchmarksRaw in-guest fio and Geekbench measurements with the exact commands to reproduce them and public proof links.
get_architectureWhy the platform is built this way: storage, network, security, backups, market context, how to get started.

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 catalog that powers the pricing pages. When we change a tier, 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, all-in with disk and IP."
  • "Quote a production Postgres VM: 2 fast vCPU, 4 GB RAM, 100 GB database-grade disk."
  • "What makes ServersCamp different from other VPS providers? Verify the claims."
  • "Show me the benchmark proof behind the storage latency numbers."
  • "Which disk class fits a Redis-style cache, and what does 50 GB of it cost?"

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 (list your VMs, create one, read billing) are on the roadmap. If a specific tool would unlock a workflow for you, tell us in a ticket: we pick the next batch by user request.