AI-Native Cloud Platform.

Use your favorite AI coding agent to build, deploy and manage applications on Nodion.

Works with leading AI Coding Agents

Claude Code

Anthropic's agentic coding tool. Deploy to Nodion directly from your terminal with Claude.

OpenAI Codex

OpenAI's coding agent. Build and ship your projects to Nodion with Codex.

Gemini CLI

Google's AI coding agent for the terminal. Use Gemini CLI to deploy and manage apps on Nodion.

Three ways to connect.

Integrate your AI agent with Nodion through CLI, MCP or our REST API.

Install the Nodion CLI.

Download a pre-built binary and run nodion login.

Download Binaries

Grab a pre-built binary for your operating system, then run nodion login to authenticate.

or

Install via Terminal

Prefer the terminal? A single command detects your OS and architecture, fetches the matching release and drops the binary on your PATH.

macOS & Linux Bash

bashcurl -fsSL https://cli.nodion.com/install.sh | bash

Installs to /usr/local/bin (falling back to ~/.local/bin) and runs chmod +x. Redirect with NODION_INSTALL_DIR=~/bin.

Windows PowerShell

powershellirm https://cli.nodion.com/install.ps1 | iex

Installs to %LocalAppData%\Programs\nodion and adds that folder to your user PATH. No admin rights required. Override the target with $env:NODION_INSTALL_DIR='C:\Tools\nodion' before running.

Quickstart

bashnodion login
cd my-app
nodion link              # pins this directory to a Nodion project + app
nodion deploy --wait     # streams build/release logs until available

nodion link writes a small nodion.yml into the current directory. From then on the CLI resolves the app automatically, so you don't need --app on deploy, env, logs or status. Perfect for AI agents working in a repo.

Deploying with a Git integration

For dockerfile and buildpacks apps, Nodion pulls from the branch you connected in the dashboard. The agent's workflow is: commit → push → nodion deploy --wait. The build runs on Nodion against the most recent commit of the connected branch, build logs stream into your terminal.

What your AI agent can do.

Full access to the Nodion platform, directly from your AI coding session.

Deploy

Push your code to production. Your AI agent can trigger deployments, monitor build progress and verify that everything is running.

Logs

Stream and analyze application logs in real-time. Your AI agent can read logs, identify errors and suggest fixes without leaving your coding session.

Metrics

Access CPU and RAM metrics for your applications. Your AI agent can detect performance issues and recommend scaling before your users notice.

Dockerfile

Nodion uses Dockerfiles to build your app. AI agents can analyze your project and generate an optimized Dockerfile tailored for Nodion.

Environment

Manage environment variables and secrets. Your AI agent can configure database connections, API keys and other settings for your app.

Scaling

Scale your application up or down. Your AI agent can adjust instance counts and instance types based on traffic patterns and metrics.

From code to production in seconds.

AI agents generate a Dockerfile for your project and deploy it to Nodion. That's it.

~/projects/my-app
# ask claude to deploy the project
claude "deploy this to nodion"
 detected Rails 7.1 · PostgreSQL 16 · Node 20
 wrote Dockerfile
 wrote nodion.yml → my-api (project prod)
# commit and deploy, build logs stream live
git commit -am "deploy" && nodion deploy --wait
Deployment #42 created (status=waiting)
── status: building ──
 => FROM ruby:3.2-slim AS base
 => COPY Gemfile Gemfile.lock ./
 => RUN bundle install --jobs 4
 => COPY . .
── status: deploying ──
rolling out to 2 instances…
 Deployment #42 finished: available
  live at https://my-api.nodion.app
# check what's running
nodion status
Project:     prod
Application: my-api  available
  strategy:  dockerfile · 2 instances
Last deployment:
  #42  available  (user)  "deploy"
_

Get started for free ›