Skip to main content
Glama
ahmedselimmansor-ctrl

Alibaba Cloud MCP Server

Alibaba Cloud MCP Server

A comprehensive, high-performance Model Context Protocol (MCP) server for managing Alibaba Cloud resources.

This server enables AI assistants (like Claude, Cursor, and others) to seamlessly interact with Alibaba Cloud infrastructure using natural language. It features a Hybrid Architecture:

  1. Explicit Service Tools: Pre-configured, typed handlers for the most common services (ECS, VPC, RDS, RAM, ACK, SLB) to ensure rapid, error-free AI interactions.

  2. Universal API Invoker: A dynamic tool built on @alicloud/pop-core that can invoke any of the 10,000+ API endpoints across all Alibaba Cloud services, giving you true 100% cloud management coverage.

Features

  • 🚀 Zero-Config Universal Management: Dynamically call any Alibaba Cloud RPC/ROA API.

  • 📦 Explicit Typed Tools:

    • ECS: Manage Compute Instances (ecs_list_instances, ecs_start_instance)

    • VPC: Manage Networking (vpc_list, vpc_create)

    • RDS: Manage Databases (rds_list_instances)

    • RAM: Manage IAM & Security (ram_list_users)

    • ACK: Manage Kubernetes Clusters (ack_list_clusters)

    • SLB: Manage Load Balancers (slb_list)

  • 🐳 Docker Ready: Run safely in an isolated container.

  • 🛡️ Secure: Uses Zod for strict parameter validation and environment variables for credentials.

Related MCP server: MCP Cloud Services Server

Prerequisites

  • Node.js 18+ (if running locally)

  • Docker (optional, for containerized execution)

  • Alibaba Cloud Access Key ID and Secret with appropriate IAM permissions.

Setup & Installation

Option 1: Running Locally

  1. Clone the repository and install dependencies:

    npm install
  2. Build the TypeScript source:

    npm run build
  3. Create a .env file in the root directory:

    ALIBABA_CLOUD_ACCESS_KEY_ID="your_access_key"
    ALIBABA_CLOUD_ACCESS_KEY_SECRET="your_access_secret"
    ALIBABA_CLOUD_REGION_ID="cn-hangzhou"

Option 2: Running with Docker

  1. Build the Docker image:

    docker build -t alibaba-cloud-mcp .

Configuring Your MCP Client

Claude Desktop

To integrate this server with Claude Desktop, add the following to your claude_desktop_config.json (usually located at %APPDATA%\Claude\claude_desktop_config.json on Windows or ~/Library/Application Support/Claude/claude_desktop_config.json on Mac):

If using Node.js locally:

{
  "mcpServers": {
    "alibaba-cloud": {
      "command": "node",
      "args": ["/absolute/path/to/Alibaba_cloud_MCP_server/dist/index.js"],
      "env": {
        "ALIBABA_CLOUD_ACCESS_KEY_ID": "your_access_key",
        "ALIBABA_CLOUD_ACCESS_KEY_SECRET": "your_access_secret",
        "ALIBABA_CLOUD_REGION_ID": "cn-hangzhou"
      }
    }
  }
}

If using Docker:

{
  "mcpServers": {
    "alibaba-cloud": {
      "command": "docker",
      "args": [
        "run", 
        "-i", 
        "--rm", 
        "-e", "ALIBABA_CLOUD_ACCESS_KEY_ID", 
        "-e", "ALIBABA_CLOUD_ACCESS_KEY_SECRET", 
        "-e", "ALIBABA_CLOUD_REGION_ID", 
        "alibaba-cloud-mcp"
      ],
      "env": {
        "ALIBABA_CLOUD_ACCESS_KEY_ID": "your_access_key",
        "ALIBABA_CLOUD_ACCESS_KEY_SECRET": "your_access_secret",
        "ALIBABA_CLOUD_REGION_ID": "cn-hangzhou"
      }
    }
  }
}

Note: Restart Claude Desktop after updating the configuration.

Security Warning

⚠️ IMPORTANT: This MCP server is incredibly powerful, especially due to the aliyun_invoke_api tool which can manage any resource. Always adhere to the Principle of Least Privilege. Ensure that the IAM/RAM user associated with your Access Keys only has the minimum permissions necessary for the tasks you intend the AI to perform.

Architecture

Built using:

  • @modelcontextprotocol/sdk

  • @alicloud/pop-core

  • zod for validation

  • TypeScript

Install Server
F
license - not found
C
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    -
    quality
    D
    maintenance
    Enables AI assistants to manage Supabase projects deployed on Alibaba Cloud through natural language commands. Supports project creation/deletion, database querying, security configuration, and table management operations.
    Last updated
    7
    Apache 2.0
  • A
    license
    -
    quality
    B
    maintenance
    Provides AI agents with natural language control over AWS, Azure, GCP, and Alibaba Cloud infrastructure through dynamic API discovery and execution. Supports 51,900+ cloud operations and includes OpenTofu integration for complete infrastructure lifecycle management.
    Last updated
    3
    MIT

View all related MCP servers

Related MCP Connectors

  • SaaS intelligence for AI agents. 5 unified tools cover 1,000+ services with 91-96% token savings.

  • Create and manage AI agents that collaborate and solve problems through natural language interacti…

  • The agent-native cloud: database, functions, AI, storage, computers. 55 tools, one API key.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ahmedselimmansor-ctrl/Alibaba_cloud_MCP_server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server