LangChain released `langgraph deploy`, a CLI command that builds, provisions, and deploys LangGraph agents to LangSmith Deployment with full infra setup.
LangChain added a `deploy` command set to the langgraph-cli package, enabling one-command deployment of LangGraph agents to LangSmith Deployment. The CLI automatically builds a Docker image, provisions Postgres for persistence, and Redis for streaming — no manual infra setup required. It integrates directly with CI/CD pipelines like GitHub Actions, GitLab CI, and Bitbucket Pipelines. New agent templates (deep agent, simple agent) are also available via `langgraph new`.
This collapses the entire agent deployment pipeline — Docker build, Postgres provisioning, Redis setup — into a single CLI command. If you're already using LangGraph, the barrier to production just dropped from days of infra config to minutes. The CI/CD integration means you can wire this into GitHub Actions and ship agent updates the same way you ship code.
Run `uvx --from langgraph-cli langgraph deploy` against your existing LangGraph project this week and benchmark how long it takes vs. your current deployment process — if it's under 10 minutes end-to-end, replace your current deploy script.
Install and run: `uvx --from langgraph-cli langgraph deploy --help` — you'll see the full command surface in under 60 seconds and can immediately assess what flags map to your current infra setup.
Tags
Signals by role
Also today
Tools mentioned