v1.x · runningREMOTE MCP
LetsCloud MCP Server
Remote Model Context Protocol server + REST API to manage LetsCloud infrastructure directly from AI assistants like Claude, Cursor, Windsurf, VS Code Copilot and any MCP-compatible client.
Remote Model Context Protocol server + REST API to manage LetsCloud infrastructure directly from AI assistants like Claude, Cursor, Windsurf, VS Code Copilot and any MCP-compatible client.
{
"mcpServers": {
"letscloud": {
"url": "https://mcp.letscloud.io",
"headers": {
"Authorization": "Bearer YOUR_LETSCLOUD_API_KEY"
}
}
}
}Requires VS Code 1.102+ with GitHub Copilot Chat.
Install in VS Code Β Install in VS Code Insiders
After clicking, VS Code prompts you to confirm. Then open the generated mcp.json and add your Authorization header.
code --add-mcp '{"name":"letscloud","type":"http","url":"https://mcp.letscloud.io","headers":{"Authorization":"Bearer YOUR_LETSCLOUD_API_KEY"}}'MCP: Add Serverβ¦ β choose HTTP (server-sent events)https://mcp.letscloud.ioletscloudmcp.json and add the Authorization header:{
"servers": {
"letscloud": {
"type": "http",
"url": "https://mcp.letscloud.io",
"headers": {
"Authorization": "Bearer YOUR_LETSCLOUD_API_KEY"
}
}
}
}Tip: you can also edit .vscode/mcp.json by hand to share the config with your team.
claude_desktop_config.json:~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonmcpServers:{
"mcpServers": {
"letscloud": {
"url": "https://mcp.letscloud.io",
"headers": {
"Authorization": "Bearer YOUR_LETSCLOUD_API_KEY"
}
}
}
}~/.cursor/mcp.json){
"mcpServers": {
"letscloud": {
"url": "https://mcp.letscloud.io",
"headers": {
"Authorization": "Bearer YOUR_LETSCLOUD_API_KEY"
}
}
}
}~/.codeium/windsurf/mcp_config.json:{
"mcpServers": {
"letscloud": {
"serverUrl": "https://mcp.letscloud.io",
"headers": {
"Authorization": "Bearer YOUR_LETSCLOUD_API_KEY"
}
}
}
}Note: Windsurf uses serverUrl, not url.
~/.continue/config.yaml and add:mcpServers:
- name: letscloud
url: https://mcp.letscloud.io
headers:
Authorization: Bearer YOUR_LETSCLOUD_API_KEYNote: YAML format, not JSON.
@letscloud to invoke any toolMost MCP-compatible clients accept the generic snippet at the top of this section. To verify the server is reachable end-to-end:
curl -H "Authorization: Bearer YOUR_LETSCLOUD_API_KEY" \
https://mcp.letscloud.io/api/v1/accountYou should receive a JSON payload with your LetsCloud profile.
curl -H "Authorization: Bearer YOUR_LETSCLOUD_API_KEY" \
https://mcp.letscloud.io/api/v1/accountOnce connected, just chat with the AI in plain English (or Portuguese). The assistant picks the right tool, asks for confirmation when needed, and executes against your LetsCloud account.