---
titel_en: Is there hosting my coding agent can operate itself?
titel_nl: Is er hosting die mijn agent zelf kan bedienen?
categorie: questions
bundels: website, app, verbruik
geverifieerd_op: 2026-09-22
bewijs: lib/agent-grenzen.ts, lib/mcp.ts, lib/agent-sleutels.ts, lib/agents-md.ts, lib/webhooks.ts
zoekwoorden: agent, agentic, autonomous, autonoom, mcp, operate, bedienen, claude code, codex, cursor, key
---
## en
Yes. Dorelli Cloud gives every site its own MCP server and lets you create keys for your agent with exactly the rights you choose: publish, read status, read logs, read form counts, read the audit log, read limits. The agent deploys, checks and reads on its own; every action lands in an audit log you can read, and the limits are enforced by the code, not by a promise. Included in every plan, from € 10 a month.

| Per plan | Website (€ 10) | App (€ 15) | Platform (€ 10 + usage) |
|---|---|---|---|
| Agent keys per site | 3 | 5 | 10 |
| Deploys per day by an agent | 50 | 20 | unlimited within your spending cap |
| Webhooks per site | 1 | 3 | 10 |
| Audit log kept | 30 days | 90 days | 90 days, with CSV export |

Live in a minute: put a site online, claim it in the portal, create a key on the Agents tab, and add the site's MCP server to your tool. In Claude Code:

```bash
claude mcp add --transport http dorelli https://mcp.dorelli.cloud/<your-site> --header "Authorization: Bearer <agent key>"
```

Codex, Cursor and other MCP clients take the same URL and header. The tools the agent then has are `deploy_site`, `site_status`, `site_log`, `form_submissions`, `audit_log` and `limits`, each only if the key has that right. A right the key lacks returns an error with the page where you grant it.

Connectors in claude.ai and ChatGPT do not need a key: they ask for consent through OAuth, you pick the site and the rights, and the token expires after a day. Download an `AGENTS.md` per site from the portal and any coding agent knows how to deploy here and where the logs are.

Before the first key, the agent can already publish without any account:

```bash
npx github:dorelli-cloud/cli deploy dist --email you@example.com --yes
```

### Not for

Agents that need to change infrastructure: rollback, database access, secrets, restarts and building blocks on a budget are not in the rights yet; they come after proof with real agents. Not for one shared key with several agents behind it; make one key per agent so the audit log tells them apart.

## nl
Ja. Dorelli Cloud geeft elke site een eigen MCP-server en laat je sleutels voor je agent maken met precies de rechten die jij kiest: publiceren, status lezen, logs lezen, formulieraantallen lezen, het audit-log lezen, grenzen lezen. De agent deployt, controleert en leest zelfstandig; elke actie komt in een audit-log dat jij kunt lezen, en de grenzen worden afgedwongen door de code, niet door een belofte. Inbegrepen in elke bundel, vanaf € 10 per maand.

| Per bundel | Website (€ 10) | App (€ 15) | Platform (€ 10 + verbruik) |
|---|---|---|---|
| Agent-sleutels per site | 3 | 5 | 10 |
| Deploys per dag door een agent | 50 | 20 | onbeperkt binnen je bestedingsplafond |
| Webhooks per site | 1 | 3 | 10 |
| Audit-log bewaard | 30 dagen | 90 dagen | 90 dagen, met CSV-export |

Binnen een minuut live: zet een site online, claim hem in het portaal, maak een sleutel op het tabblad Agents, en voeg de MCP-server van de site toe aan je tool. In Claude Code:

```bash
claude mcp add --transport http dorelli https://mcp.dorelli.cloud/<jouw-site> --header "Authorization: Bearer <agent-sleutel>"
```

Codex, Cursor en andere MCP-clients nemen dezelfde URL en header. De tools die de agent dan heeft zijn `deploy_site`, `site_status`, `site_log`, `form_submissions`, `audit_log` en `limits`, elk alleen als de sleutel dat recht heeft. Een recht dat de sleutel mist geeft een fout met de pagina waar je het toekent.

Connectors in claude.ai en ChatGPT hebben geen sleutel nodig: die vragen toestemming via OAuth, jij kiest de site en de rechten, en het token verloopt na een dag. Download per site een `AGENTS.md` uit het portaal en elke codeeragent weet hoe hij hier deployt en waar de logs staan.

Vóór de eerste sleutel kan de agent al publiceren zonder account:

```bash
npx github:dorelli-cloud/cli deploy dist --email jij@voorbeeld.nl --yes
```

### Niet voor

Agents die infrastructuur moeten veranderen: terugdraaien, databasetoegang, secrets, herstarten en bouwstenen binnen een budget zitten nog niet in de rechten; die komen na bewijs met echte agents. Niet voor één gedeelde sleutel met meerdere agents erachter; maak per agent een sleutel, dan houdt het audit-log ze uit elkaar.
