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 the CLI, MCP, or our REST API.

Connect via MCP.

Point your AI client at https://mcp.nodion.net.

Connect to the hosted MCP endpoint

Nodion runs a remote MCP server at https://mcp.nodion.net. Any MCP-compatible client can plug in, authenticate with a Bearer token, and drive your Nodion projects in natural language. No local daemon.

1. Create an API key

Go to Account → Security, click Add API Key, pick the scopes you want to grant, optionally restrict the key to specific projects and pick an expiry. The token is shown only once, so copy it straight into your AI client's config.

2. Add Nodion to Claude Code

A single command registers the server. No config file to edit.

bashclaude mcp add --transport http nodion https://mcp.nodion.net/mcp \
  --header "Authorization: Bearer YOUR_NODION_API_KEY"

Start or restart a Claude Code session. The Nodion tools become available in chat right away.

Using a different client? See the MCP docs or one-click setup.

What your agent can do

Ask in plain language to create a project, deploy an app, set environment variables, and read logs. Write actions ask you to confirm before they run.

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
 created app my-api in project prod
# commit and deploy, build logs stream live
git commit -am "deploy" && git push
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
what’s running on my-api?
Project:     prod
Application: my-api  available
  strategy:  dockerfile · 2 instances
Last deployment:
  #42  available  (user)  "deploy"
_

Get started for free ›