Aliyun cloud services
## Alibaba Cloud MCP Server: Alibaba Cloud Services Integration The **Alibaba Cloud MCP Server** integrates Alibaba Cloud services into Google Antigravity, enabling developers to manage cloud resources, deploy applications, and interact with Chinese cloud infrastructure. ### Why Alibaba Cloud MCP? - **Full cloud access** - ECS, OSS, RDS, and more - **China region** - Access Chinese cloud regions - **Resource management** - Create and manage cloud resources - **Serverless** - Function Compute integration - **Container services** - ACK Kubernetes support ### Key Features #### 1. ECS Instances ```python # List instances instances = await mcp.call("alicloud", "list_instances", { "region": "cn-hangzhou", "status": "Running" }) for instance in instances: print(f"{instance[\"InstanceId\"]}: {instance[\"InstanceType\"]}") # Create instance instance = await mcp.call("alicloud", "create_instance", { "region": "cn-hangzhou", "instance_type": "ecs.t6-c1m1.large", "image_id": "ubuntu_20_04_x64" }) ``` #### 2. Object Storage (OSS) ```python # Upload file await mcp.call("alicloud", "oss_put_object", { "bucket": "my-bucket", "key": "path/to/file.txt", "content": "file contents" }) # List objects objects = await mcp.call("alicloud", "oss_list_objects", { "bucket": "my-bucket", "prefix": "path/" }) ``` #### 3. Database (RDS) ```python # List databases databases = await mcp.call("alicloud", "list_rds", { "region": "cn-hangzhou" }) # Create database instance rds = await mcp.call("alicloud", "create_rds", { "region": "cn-hangzhou", "engine": "MySQL", "version": "8.0", "class": "rds.mysql.s1.small" }) ``` #### 4. Function Compute ```python # Create function fn = await mcp.call("alicloud", "create_function", { "service": "my-service", "function": "handler", "runtime": "python3.9", "handler": "index.handler" }) # Invoke function result = await mcp.call("alicloud", "invoke_function", { "service": "my-service", "function": "handler", "payload": {"key": "value"} }) ``` ### Configuration ```json { "mcpServers": { "alicloud": { "command": "npx", "args": ["-y", "@anthropic/mcp-alicloud"], "env": { "ALIBABA_CLOUD_ACCESS_KEY_ID": "your-key-id", "ALIBABA_CLOUD_ACCESS_KEY_SECRET": "your-secret" } } } } ``` ### Use Cases **China Deployment**: Deploy apps in China regions. **Hybrid Cloud**: Multi-cloud infrastructure. **E-commerce**: Alibaba ecosystem integration. **Serverless**: Deploy serverless functions. The Alibaba Cloud MCP Server enables Alibaba Cloud integration.
{
"mcpServers": {
"alibaba-cloud": {
"mcpServers": {
"alibaba": {
"env": {
"ALIBABA_ACCESS_KEY": "YOUR_KEY",
"ALIBABA_SECRET_KEY": "YOUR_SECRET"
},
"args": [
"-y",
"alibaba-cloud-ops-mcp-server"
],
"command": "npx"
}
}
}
}
}