Letscloud MCP Server

This project exposes LetsCloud's cloud platform through the [Model Context Protocol (MCP)](https://modelcontextprotocol.io) so AI assistants like

Remote serverstreamable-httpPython

What is the Letscloud MCP server?

Letscloud MCP server is a hosted integration for AI assistants that speak the Model Context Protocol. This project exposes LetsCloud's cloud platform through the Model Context Protocol (MCP) so AI assistants like Claude, Cursor, Windsurf, VS Code Copilot, and any MCP-compatible client can.

Setting it up

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

What the assistant can call

Once Letscloud is connected, these are the calls the assistant has available:

  • get_account_info — GET /api/v1/account
  • list_locations — GET /api/v1/locations
  • list_plans — GET /api/v1/locations/{slug}/plans
  • list_images — GET /api/v1/locations/{slug}/images
  • list_ssh_keys — GET /api/v1/ssh-keys
  • get_ssh_key — GET /api/v1/ssh-keys/{title}
  • create_ssh_key — POST /api/v1/ssh-keys
  • delete_ssh_key — DELETE /api/v1/ssh-keys/{slug}
  • list_servers — GET /api/v1/instances
  • get_server — GET /api/v1/instances/{id}
  • create_server — POST /api/v1/instances
  • delete_server — DELETE /api/v1/instances/{id}

Configuration and credentials

You will need one environment variable: YOUR_LETSCLOUD_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Before you rely on it

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Letscloud.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the letscloud mcp server does with a few real requests.

Choosing this one

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Letscloud's toolset — get_account_info, list_locations, list_plans and 11 more — is a fair guide to whether it matches your workflow. It is maintained by letscloud-community; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
get_account_infoGET /api/v1/account
list_locationsGET /api/v1/locations
list_plansGET /api/v1/locations/{slug}/plans
list_imagesGET /api/v1/locations/{slug}/images
list_ssh_keysGET /api/v1/ssh-keys
get_ssh_keyGET /api/v1/ssh-keys/{title}
create_ssh_keyPOST /api/v1/ssh-keys
delete_ssh_keyDELETE /api/v1/ssh-keys/{slug}
list_serversGET /api/v1/instances
get_serverGET /api/v1/instances/{id}
create_serverPOST /api/v1/instances
delete_serverDELETE /api/v1/instances/{id}
start_serverPUT /api/v1/instances/{id}/power-on
shutdown_serverPUT /api/v1/instances/{id}/power-off

How to install the Letscloud MCP server

{
  "mcpServers": {
    "letscloud": {
      "url": "https://mcp.letscloud.io/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_LETSCLOUD_API_KEY"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
YOUR_LETSCLOUD_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Letscloud to get account info.
  • Use Letscloud to list locations.
  • Use Letscloud to list plans.

Frequently asked questions

It connects Letscloud to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (get_account_info, list_locations, list_plans, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Letscloud directly.