1Panel's GitHub README now opens with a claim, not a feature list: "the only VPS control panel with native AI agent support." The panel that already manages your Nginx config, your Postgres instance, and your SSL certificates now also runs Ollama models, one-click-deploys OpenClaw personal agents, and monitors your GPU — from the same dashboard, on the same box. That's a genuinely new category move: a tool built to administer a single VPS is now also an AI agent host. It's also not alone. Coolify ships a community MCP server with 42 tools; Dokploy ships an official one covering its full API. All three let an AI assistant operate the panel through natural language instead of a UI. None of them let that assistant provision a second machine.
What 1Panel's "native AI agent support" actually ships
1Panel is a Go-based, open-source VPS control panel — 35,000+ GitHub stars, a 165+ app one-click marketplace (Nextcloud, Bitwarden, Umami, and the rest of the usual self-hosted catalog), free forever in its OSS tier. Historically it competed with cPanel and Plesk on one axis: point it at a bare Linux box, get website hosting, database administration, container management, and firewall rules through a web UI instead of a terminal.
The new piece is what 1Panel calls its AI Agent Runtime, and it's not a vague "AI features coming soon" gesture — it's three concrete, shipped capabilities:
| Capability | What it does |
|---|---|
| Ollama model hosting | Deploy and run local LLMs directly from the dashboard — no separate install, no separate config file |
| OpenClaw one-click deploy | Spin up an OpenClaw personal agent instance from the app marketplace, same flow as installing Nextcloud |
| GPU monitoring | Track GPU utilization for whatever's running on the box, in the same monitoring pane that already tracks CPU/RAM/disk |
| MCP server package | A published mcp-1panel package exposing panel operations (app management, server state) as MCP tools an AI client can call |
OpenClaw is the agent doing the actual work here, and it's worth pausing on why bundling it is a meaningful pull rather than a throwaway integration: the project crossed 100,000 GitHub stars within eight weeks of launch. It's a self-hosted, model-agnostic personal-assistant runtime that connects to WhatsApp, Telegram, Slack, Discord, and a dozen other channels, and can browse the web, fill forms, and run shell commands against the machine it lives on. Wiring a one-click install for something growing that fast, into a panel whose whole pitch is "manage your server without touching a terminal," is a legible bet on where self-hosted demand is heading — not a checkbox feature.
1Panel isn't the only panel an agent can talk to
The "native AI agent support" framing implies a AI-agent-hosting panel is a new thing under the sun. It isn't — it's 1Panel catching up to a pattern that self-hosted PaaS tools have been building for over a year, just aimed at a different layer of the stack:
| Tool | Category | AI agent surface | Scope |
|---|---|---|---|
| 1Panel | VPS control panel | Hosts agents (Ollama + OpenClaw) as apps on the box | Single server |
| Coolify | Self-hosted PaaS | Community MCP server, 42 tools — lets an AI operate Coolify (create apps, manage domains, check deploys) | Single Coolify instance |
| Dokploy | Self-hosted PaaS | Official first-party MCP package, full API coverage — same operate-via-chat pattern, maintained in sync with the platform | Single Dokploy instance |
The distinction matters: Coolify's and Dokploy's MCP servers let an AI assistant drive the panel — create an app, check a deployment, configure a domain — through natural language instead of clicking through a UI. 1Panel's AI Agent Runtime does something adjacent but different: it lets the panel host an agent as a workload, the same way it hosts a Nextcloud instance. Put together, the pattern is the same regardless of which side of it a given tool ships first: every major self-hosted server-management tool in 2026 either lets an agent operate it, or lets you run an agent on it, or — increasingly, per 1Panel's bet — both.
That's the real signal in 1Panel's announcement. "AI-native" has become table stakes even for a tool that was never PaaS-scoped to begin with. 1Panel was never trying to be a deploy-from-git platform; it's a control panel for a box you already have running Nginx and MySQL by hand. The fact that it now feels compelled to ship an agent runtime says the pressure to be "AI-native" has spread past platforms whose whole pitch is deployment, into tools whose job was always narrower — keeping one server's services patched and configured.
Where it stops: one box, one panel, no fleet
Here's the ceiling all three tools share, and it's not a matter of feature-completeness catching up over the next release — it's structural. 1Panel's Ollama instance, OpenClaw agent, and GPU monitor all run on the single VPS the panel is installed on. Coolify's and Dokploy's MCP servers let an agent create an app or check a deployment, but the unit they operate on is one Coolify or Dokploy instance, managing the containers on the machine(s) that instance already knows about. None of the three expose a way to describe a fleet — declare "I need three more machines," provision them, join them to a scheduling pool, and roll an upgrade across them without touching each box by hand.
That's not a criticism of scope creep avoided; it's a real capability line. A control panel or a single-instance PaaS was built to answer "what's running on this server," not "how many servers should exist and what state should each be in." Bolting agent hosting or an MCP server onto that model gives you an agent that can install an app or check a deploy — a single chat turn, one instance. It doesn't give you an agent that can request more capacity and get a new node provisioned, bootstrapped, and joined to a pool, because the tool underneath was never built to model the machine as a resource with its own declarative lifecycle — only the workloads sitting on a machine that already exists.
That's the specific thing a fleet-lifecycle layer like Cluster API is built around instead: machines themselves — not just the apps on them — are declarative objects. A Machine or MachineSet resource describes desired node state; a controller reconciles the actual fleet toward it, whether that's provisioning a new Hetzner box, rolling a Kubernetes version across twenty nodes, or draining and replacing one that failed a health check. An agent operating at that layer isn't limited to "install this app" or "check this deploy" — it can request capacity and get a real answer, because the resource it's asking about (the machine, not just the workload) was designed to be provisioned and reconciled from the start, not clicked through in a UI after the fact.
Deploy-from-chat and fleet-lifecycle are different problems
None of this makes 1Panel's move wrong — quite the opposite. Shipping Ollama and OpenClaw as one-click apps, and publishing an MCP server so an agent can drive the panel, is exactly the right response to where its users already are: people running one box who want an agent on it without hand-rolling a systemd unit. Coolify's and Dokploy's MCP servers solve the same real problem one layer up — driving a single self-hosted PaaS instance by chat instead of by UI click.
But "an agent can deploy an app through chat" and "an agent can operate a fleet's lifecycle" are different capabilities, and conflating them is where the "AI-native" label gets stretched thin. The first is a chat interface bolted onto a tool that was already single-instance-scoped. The second requires the tool underneath to have modeled machines — not just workloads — as things a controller can provision, join, and reconcile in the first place. A single-box panel or a single-instance PaaS can add the first without ever reaching the second, no matter how many MCP tools it ships.
Bex.co is the open-source, AI-native Render alternative built on exactly that fleet-lifecycle model — push a git repo, get a running HTTPS service on machines you own, with Cluster API managing the machines underneath and agents as first-class operators of the whole stack, not just the app on top of it. Star the repo on GitHub or deploy your first app today.
Sources
- 1Panel-dev/1Panel — GitHub
- 1Panel — Open-Source VPS Control Panel
- OpenClaw/OpenClaw — GitHub
- OpenClaw — Personal AI Assistant
- Dokploy/mcp — Official MCP package for Dokploy
- StuMason/coolify-mcp — MCP server for Coolify
All figures cited above are drawn directly from the linked sources.



