Wraps the Defang CLI to bring cloud deployment directly into your IDE. You can create Docker Compose stacks, deploy them to AWS or GCP, monitor deployments, and tail logs without leaving your editor. The server exposes the full Defang CLI through MCP, so you can run commands like stack creation, environment management, and deployment operations through Claude or other MCP clients. Particularly handy when you want to go from local Docker Compose to production cloud infrastructure with a simple prompt, since it handles the entire deployment pipeline from containerization to load balancer provisioning.

Take your app from Compose to a secure and scalable deployment on your favorite cloud in minutes.
flowchart LR
subgraph local["Your Machine or CI/CD"]
compose["compose.yaml"] --> cli["Defang CLI"]
end
subgraph defang["Defang Backend"]
fabric["Fabric API (gRPC)"]
end
subgraph cloud["Your Cloud Account"]
secrets["Config & Secrets"]
cd["Defang CD Task"]
logs["Logs"]
runtime["Load Balancer, Containers, DB, Cache, LLM, DNS, Roles"]
end
%% control plane
cli <-.-> fabric
%% deploy
cli --> secrets
cli --> cd
cd --> runtime
%% observability
cli -.-> logs
Your code and secrets never leave your cloud account. Defang orchestrates the deployment, but everything runs in your infrastructure.
The Defang Command-Line Interface (CLI) is designed for developers who prefer to manage their workflows directly from the terminal. It offers full access to Defang’s capabilities, allowing you to build, test, and deploy applications efficiently to the cloud.
If you already have a Docker Compose file, create a new stack and then deploy it. For example:
$ defang stack new
? Which cloud provider do you want to deploy to? AWS
? Which AWS region do you want to deploy to? us-west-2
? Which deployment mode do you want to use? AFFORDABLE
? What do you want to call this stack? awsuswest2
* Created new stack configuration file: `.defang/awsuswest2`. Check this file into version control. You can now deploy this stack using `defang up --stack=awsuswest2`
$ defang up --stack=awsuswest2
The Defang Model Context Protocol (MCP) Server is tailored for developers who work primarily within integrated development environments (IDEs). It enables seamless cloud deployment from supported editors such as Cursor, Windsurf, VS Code, VS Code Insiders and Claude delivering a fully integrated experience without leaving your development environment.
Install the Defang plugin for Claude Code to deploy directly from any Claude Code session — no CLI required upfront:
/plugin marketplace add DefangLabs/defang
/plugin install defang@defang-skills
After installing, use /defang:deploy to guide you through deploying your project. The Defang MCP server activates automatically once the Defang CLI is installed.
defang generatedefang compose upInstall the Defang CLI from one of the following sources:
Using the Homebrew package manager DefangLabs/defang tap:
brew install DefangLabs/defang/defang
Using a shell script:
eval "$(curl -fsSL s.defang.io/install)"
Using Go:
go install github.com/DefangLabs/defang/src/cmd/cli@latest
Using the Nix package manager:
nix-env -if https://github.com/DefangLabs/defang/archive/main.tar.gz
nix profile install github:DefangLabs/defang#defang-cli --refresh
Using winget:
winget install defang
Using a PowerShell script:
iwr https://s.defang.io/defang_win_amd64.zip -OutFile defang.zip
Expand-Archive defang.zip . -Force
Using the official image from Docker Hub:
docker run -it defangio/defang-cli help
Using NPX:
npx defang@latest help
or download the latest binary of the Defang CLI.
The Defang CLI supports command completion for Bash, Zsh, Fish, and Powershell. To get the shell script for command completion, run the following command:
defang completion [bash|zsh|fish|powershell]
If you're using Bash, you can add the following to your ~/.bashrc file:
source <(defang completion bash)
If you're using Zsh, you can add the following to your ~/.zshrc file:
source <(defang completion zsh)
or pipe the output to a file called _defang in the directory with the completions.
If you're using Fish, you can add the following to your ~/.config/fish/config.fish file:
defang completion fish | source
If you're using Powershell, you can add the following to your $HOME\Documents\PowerShell\Microsoft.PowerShell_profile.ps1 file:
Invoke-Expression -Command (defang completion powershell | Out-String)
The Defang CLI recognizes the following environment variables:
COMPOSE_DISABLE_ENV_FILE - Whether to disable loading environment variables from a .env file in the current directory; defaults to falseCOMPOSE_FILE - The Compose file(s) to use; defaults to compose.yaml, compose.yml, docker-compose.yaml, or docker-compose.yml in the current directoryCOMPOSE_PATH_SEPARATOR - The path separator to use for COMPOSE_FILE; defaults to : on Unix/MacOS and ; on WindowsCOMPOSE_PROJECT_NAME - The name of the project to use; overrides the name in the Compose fileDEFANG_ACCESS_TOKEN - The access token to use for authentication; if not specified, uses token from defang loginDEFANG_ALLOW_UPGRADE - If set to true, allows upgrading the CD image and Pulumi version to the latest available; defaults to false, ie. previously deployed versions will be used to avoid unexpected upgradesDEFANG_BUILD_CONTEXT_LIMIT - The maximum size of the build context when building container images; defaults to 100MiBDEFANG_CD_BUCKET - The S3 bucket to use for the BYOC CD pipeline; defaults to defang-cd-bucket-…DEFANG_CD_IMAGE - The image to use for the Continuous Deployment (CD) pipeline; defaults to public.ecr.aws/defang-io/cd:public-betaDEFANG_DEBUG - set this to 1 or true to enable debug loggingDEFANG_DISABLE_ANALYTICS - If set to true, disables sending analytics to Defang; defaults to falseDEFANG_EDITOR - The editor to launch after new project generation; defaults to code (VS Code)DEFANG_FABRIC - The address of the Defang Fabric to use; defaults to fabric-prod1.defang.devDEFANG_JSON - If set to true, outputs JSON instead of human-readable output; defaults to falseDEFANG_HIDE_HINTS - If set to true, hides hints in the CLI output; defaults to falseDEFANG_HIDE_UPDATE - If set to true, hides the update notification; defaults to falseDEFANG_ISSUER - The OAuth2 issuer to use for authentication; defaults to https://auth.defang.ioDEFANG_MODEL_ID - The model ID of the LLM to use for the generate/debug AI integration (Pro users only)DEFANG_NO_CACHE - If set to true, disables pull-through caching of container images; defaults to falseDEFANG_PREFIX - The prefix to use for all BYOC resources; defaults to DefangDEFANG_PROVIDER - The name of the cloud provider to use, auto (default), aws, digitalocean, gcp, or defangDEFANG_PULUMI_BACKEND - The Pulumi backend URL or "pulumi-cloud"; defaults to a self-hosted backendDEFANG_PULUMI_DEBUG - If set to true, enables debug logging for Pulumi operations; defaults to falseDEFANG_PULUMI_DIFF - If set to true, shows the Pulumi diff during deployments; defaults to falseDEFANG_PULUMI_DIR - Run Pulumi from this folder, instead of spawning a cloud task; requires --debug (BYOC only)DEFANG_PULUMI_VERSION - Override the version of the Pulumi image to use (aws provider only)DEFANG_SUFFIX - The suffix to use for all BYOC resources; defaults to the stack name, or beta if unset.DEFANG_WORKSPACE - The workspace (name or ID) to use; preferred way to select which workspace the CLI usesNO_COLOR - If set to any value, disables color output; by default, color output is enabled depending on the terminalPULUMI_ACCESS_TOKEN - The Pulumi access token to use for authentication to Pulumi Cloud; see DEFANG_PULUMI_BACKENDPULUMI_CONFIG_PASSPHRASE - Passphrase used to generate a unique key for your stack, and configuration and encrypted state valuesTZ - The timezone to use for log timestamps: an IANA TZ name like UTC or Europe/Amsterdam; defaults to LocalXDG_STATE_HOME - The directory to use for storing state; defaults to ~/.local/stateEnvironment variables will be loaded from a .defang file in the current directory, if it exists. This file follows
the same format as a .env file: KEY=VALUE pairs on each line, lines starting with # are treated as comments and ignored.
At Defang we use the Nix package manager for our dev environment, in conjunction with DirEnv.
To get started quickly, install Nix and DirEnv, then create a .envrc file to automatically load the Defang developer environment:
echo use flake >> .envrc
direnv allow
At a high-level, support for a specific cloud lives in three repositories:
byoc packageclouds package
provider folder
Project componentService componentPostgres componentRedis componentBuildConfigProvider interface to read config (secrets/parameters) at deploy timeproviders section, documentation for how to set up credentials and permissions for the cloud, and any cloud-specific features