All guides
Pi logo
Pi

Pi Coding Agent Hosting on a Real microVM

Run Mario Zechner's Pi coding agent on its own always-on Firecracker microVM. Bring your own Anthropic or OpenAI key, keep a persistent workspace, run an optional web TUI. 124ms boot, BYOK, 30-day money-back.

Pi's whole job is to run bash, write files, and execute what the model decides. That's exactly the workload you don't want sharing a kernel with strangers. Here's how to run Mario Zechner's Pi coding agent on its own always-on Firecracker microVM: your Anthropic or OpenAI key never leaving the box, a persistent workspace, provisioned automatically the moment you pay — the microVM boots in 124ms. This guide covers what Pi is, why a terminal-first agent belongs on a real microVM, and how to get yours running.

What Pi is

Pi is a minimal, opinionated coding-agent CLI from Mario Zechner — the pi-mono project. Where most agents bake in sub-agents, plan modes, and a pile of features, Pi gives the model four tools — read, write, edit, bash — and lets it self-extend at runtime with TypeScript. It is the anti-framework: small core, composable primitives.

It is provider-agnostic and bring-your-own-key: Claude, GPT, Gemini, Grok, or a local model. Terminal-first by design, with an optional web TUI.

Pi is happiest as a long-running worker: hand it a refactor or a dependency bump, let it grind, come back to the result. That argues for a box that is always on and holds your workspace — not a laptop you close.

Why a real microVM for a coding agent

A coding agent runs bash. It writes files, installs packages, and executes whatever the model decides — code no human reviewed. A shared container is the wrong boundary for that: containers share the host kernel, and there are 200-plus known weaknesses in the stack.

jurniti gives Pi its own Firecracker microVM with its own kernel and a KVM hardware boundary — the same isolation serverless platforms use, one per tenant, booting in about 124ms. Give the agent root inside its own VM and a bad command stays contained to your box, not the host.

You also keep your model relationship. Hosts that bundle credits charge a markup on every token; even the common BYOK gateway stores your key and proxies your traffic. jurniti's BYOK is architectural: your Anthropic or OpenAI key lives only in your VM, traffic leaves that VM straight to the provider, and jurniti is never in the path. No proxy, no markup.

Because Pi's core is so light, the Starter plan (1 vCPU / 2 GiB) is plenty — you are not paying for headroom you don't use. And it is reversible: a 30-day money-back guarantee, workspace retained 7 days after cancellation.

Run Pi in 3 steps

By hand this means a VPS, Node via nvm, the npm install, a PATH wrapper, and a TLS proxy if you want the web TUI — plus patching and restarting it for as long as you run it. jurniti runs the box ops; you keep the agent. Here it is in three steps.

1. Pick a plan and pay

Starter is enough for Pi. Check out, and the provision chain runs automatically the moment payment confirms.

2. Your microVM boots with Node + Pi ready

A fresh Ubuntu microVM boots with Node and the upstream Pi installer staged. You get an in-browser terminal — nothing to SSH into. Set your model key and start Pi:

export ANTHROPIC_API_KEY=sk-ant-...
pi

Prefer a browser UI? Pi ships an optional web TUI:

pi serve --host 0.0.0.0 --port 8080

On Pro and up, it's served at your own TLS subdomain, https://<you>.jurniti.com.

3. Put it to work

Drop into a project directory and give Pi a task. Its skills and self-extensions live on the persistent workspace, so they survive restarts.

What people run Pi for

  • Long refactors. Hand it a gnarly migration and let it grind while you do other things.
  • Dependency bumps. It reads the errors, edits, runs the build, repeats.
  • Scripted chores. AST-aware rewrites, codemods, repetitive edits across a tree.
  • A self-extended toolkit. Because Pi self-extends in TypeScript, the workspace you build up becomes your own bespoke agent over time.

Snapshot a configured workspace into a template and fork it for a new project.

jurniti vs a laptop vs a DIY VPS

jurnitiYour laptopDIY VPS
Always onYesNo — it sleepsYes
Isolation for bashFirecracker microVM (KVM)Your whole machineShared kernel
Model keysYours, never leave the VMYoursYours
SetupAutomatic · 124ms bootLocal installManual
Optional web TUIBuilt in (custom subdomain on Pro+)n/aYou configure it
Refund30-day money-backn/aNone

Pricing

Starter is $25/mo and comfortably runs Pi; Pro is $49/mo and Max $99/mo for heavier work. The first 50 founder seats are $144/year for Starter. Every plan includes the 30-day money-back guarantee, and your model spend is separate and never marked up.

Running a different agent? See the guides for Hermes Agent and OpenClaw, or compare plans on the pricing page.

Frequently asked questions

What is the Pi coding agent?
Pi is a minimal, opinionated coding-agent CLI from Mario Zechner (pi-mono). It gives the model four core tools — read, write, edit, and bash — and lets it self-extend at runtime. It is provider-agnostic (Claude, GPT, Gemini, Grok, local) and deliberately small, so it is the anti-framework compared to heavier agents.
Can I run Pi on a server?
Yes. Pi is a terminal-first CLI, so an always-on box lets it keep working on long tasks and hold a persistent workspace you can return to. jurniti runs Pi on a Firecracker microVM and gives you an in-browser terminal on every plan; on Pro and up you can serve Pi's optional web TUI at your own TLS subdomain.
Do I need my own API key for Pi?
Yes. jurniti is bring-your-own-key. You export your own Anthropic, OpenAI, OpenRouter, or Gemini key inside your VM and Pi uses it directly. We never see the key and never mark up token spend — you pay the provider their rate.
Is Pi lightweight enough for the cheapest plan?
Yes. Pi's four-tool core is intentionally minimal, so the Starter plan (1 vCPU / 2 GiB) is plenty for most work. You only need a bigger plan if your tasks are memory-heavy or you run multiple workspaces.
How much does it cost to host Pi?
Plans start at $25/mo, with the first 50 founder seats at $144/year, and every plan has a 30-day money-back guarantee. Model spend is separate and unmarked-up because you bring your own key.
Is this an official Pi product?
No. jurniti is independent managed hosting for the open-source Pi coding agent. We install the upstream npm package at first boot — no fork — so you run the real Pi and pick your own model and version.