Nubase – an open-source back end/deploy layer for AI-written apps Nubase, an open-source AI-native backend and deploy layer, launched to let coding agents turn AI-written code into live apps in minutes. The platform bundles database, auth, storage, functions, AI gateway, memory, and cron into a single self-hostable service, enabling agents to deploy apps through MCP tools without separate hosting accounts. English · 简体中文 /OtterMind/Nubase/blob/main/README.zh-CN.md Turn AI-written code into real apps. Nubase is an open-source, AI-native backend and deploy layer that a coding agent drives directly — so a generated app goes live in minutes. Eight capability modules in one self-hostable service: Database, Auth, Storage, Assets, Functions, AI Gateway, Memory, and cron . An agent can model the data Database + Auth , deploy backend logic Functions , publish the generated frontend to a public CDN Assets , and schedule recurring work cron — all through MCP tools, with no separate hosting account. Supabase-style where it makes sense Postgres, REST, JWTs, RLS, object storage, a Studio dashboard , plus first-classMemoryand anMCPsurface built for AI coding agents. From your project folder, run: npx -y nubase cli@latest install-skills That single command: - 📚 installs the Nubase skills for both Claude Code and Codex , - 🔌 wires up the MCP server config, and - 🔐 opens a browser to authorize and pick your project. Then: Claude Code — restart it in this folder, run /mcp , and confirm nubase is connected. Codex — it's added to ~/.codex/config.toml ; just start Codex. This connects your agent to a Nubase instance a hosted one, or your own — spin one up in step 2 . Point the CLI at any instance with: npx -y nubase cli@latest install-skills \ --studio-url https://studio.example.com \ --nubase-url https://api.example.com The all-in-one Docker image bundles PostgreSQL + Redis + the backend + Studio : docker run -d --name nubase \ -p 9999:9999 -p 5432:5432 \ -v nubase data:/data \