drio
Open app

UCloud MCP Server

Source

Catalog onlyCatalog onlySTDIO

Overview

UCloud MCP Server is a cloud instance management server that utilizes the MCP-Go and UCloud SDK to manage UCloud instances through the MCP protocol.

To use UCloud MCP Server, clone the repository, install dependencies, build the service, and run it with the appropriate configuration.

  • Query instance information - List all instances - Get instance status - Monitor instance performance metrics - Support for MCP protocol - Configuration file and environment variable support
  1. Managing cloud instances on UCloud
  2. Monitoring performance metrics of cloud instances
  3. Automating instance management tasks through the MCP protocol

Add to your AI client

Use these steps to connect UCloud MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "ucloud-mcp-server-wangrzneu": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-ucloud-mcp-server-wangrzneu"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "ucloud-mcp-server-wangrzneu": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-ucloud-mcp-server-wangrzneu"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "ucloud-mcp-server-wangrzneu": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-ucloud-mcp-server-wangrzneu"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "ucloud-mcp-server-wangrzneu": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-ucloud-mcp-server-wangrzneu"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "ucloud-mcp-server-wangrzneu": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-ucloud-mcp-server-wangrzneu"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "ucloud-mcp-server-wangrzneu": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-ucloud-mcp-server-wangrzneu"
      ]
    }
  }
}

FAQ

What are the requirements to run UCloud MCP Server?

You need Go 1.23 or higher and a UCloud account with API credentials.

How do I configure UCloud MCP Server?

You can configure it using a configuration file or environment variables.

Can I monitor multiple instances at once?

Yes, you can list and monitor multiple instances simultaneously.