Description

Alibaba Cloud MCP Server provides a bridge to Alibaba Cloud services, enabling AI assistants to manage cloud resources through natural language. Developed by Zheng Dayu at Alibaba, this implementation offers tools for managing ECS instances (start, stop, reboot, create, delete), viewing cloud resources (instances, regions, zones, images, security groups), monitoring system metrics (CPU, memory, disk usage), and configuring VPC networks. The server supports both API-based operations and more complex tasks through OOS (Operation Orchestration Service), making it particularly valuable for users who need to monitor and manage their Alibaba Cloud infrastructure without navigating the console interface.

Installation

npx -y alibabacloud-mcp-server
npm install alibabacloud-mcp-server
git clone https://github.com/aliyun/alibaba-cloud-ops-mcp-server

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "alibaba-cloud": {
      "command": "npx",
      "args": [
        "-y",
        "alibabacloud-mcp-server"
      ]
    }
  }
}