Self-Host Multica with Greffon
Multica manages AI coding agents as team members. The orchestration record (issues, agents, chat) is worth owning. Here is the honest setup on a greffer, SMTP gotcha and all.
Multica is an open-source platform for managing AI coding agents (Claude Code, Codex, Gemini CLI, and others) as if they were team members: you assign tasks, track progress, and reuse skills across agents. The work it coordinates is your codebase and your prompts, so the record of who was asked to do what is worth keeping on hardware you own rather than an account you rent. Grafting the Multica server onto a greffer puts that record on your machine, and Greffon takes the TLS and routing off your plate.
Why own the server
Multica splits into two halves. The half you graft here is the server: the web UI, the API, and a bundled Postgres that holds your issues, agents, chat history, and skills. The other half is an agent daemon that runs on your own machine, where the actual code lives, and points back at this server. Self-hosting the server means the orchestration history (the prompts you sent, the tasks you tracked, the skills you built up) sits on a box you control, not a third party's.
Graft it from the catalog
On a greffer you do not hand-write a compose file or wire a reverse proxy. Pick Multica from the catalog and graft it onto your greffer. The platform generates the JWT signing secret for you at instance creation, issues the certificate, and routes the app, so the web UI comes up reachable over HTTPS without you assembling that plumbing by hand.
Wire SMTP before you log in
This is the part you cannot skip, and it is the one most likely to lock you out. Multica logs you in with an emailed verification code. If no mail transport is configured, that code is only written to the server logs and never delivered, which means you cannot log in through the normal flow at all. So link an SMTP integration to the instance as part of setup, not after.
Any transactional mail provider with TLS works here: a dedicated SMTP service, or your own mail server if it offers STARTTLS or SSL. You supply the host, port, username, and password through the instance's SMTP integration, and Multica uses it to deliver login codes.
The agent daemon runs on your machine
Grafting the greffon gives you the server, not the agents. The agent daemon, the piece that actually runs Claude Code or Codex against your repositories, runs on your own machine and connects out to this instance. That is by design: the code and the API keys for your coding agents stay local, and the greffer only ever sees the orchestration layer.
Reach it from anywhere
The Multica server is a plain HTTP web app, which makes it straightforward to reach. On the same network as your greffer it works the moment it starts. To reach it from elsewhere, including from an agent daemon on a laptop somewhere else, you have two honest options.
The simplest is tunnel mode: a greffer connects outbound to the manager's tunnel and serves its apps without opening a single inbound port, which is the answer for a box behind NAT or CGNAT with no public IP. The tunnel carries HTTP and TCP, and Multica is HTTP, so it is fully covered. If you would rather expose the greffer directly, port forwarding plus dynamic DNS still works. Either way the server stays reachable over HTTPS.
Storage, usage stats, and backups
Multica bundles its own Postgres, so the greffon carries a real database rather than a flat file. Give it room: the issue history, chat, and skills grow over time, and a database wants memory and disk headroom to stay responsive. This is not a featherweight app like a static site, so size the greffer accordingly.
Because the data lives in that Postgres volume, back it up. Greffon handles TLS and routing today, and native one-click backups are coming in M2. Until then, bring your own backup tool (restic or borgbackup are the usual choices), dump the Postgres data on a schedule, and keep a copy off the greffer. As with anything you self-host, run it on an always-on greffer (a small VPS or a mini-PC) rather than a laptop that sleeps, so the server is up when your agents reach for it.