---
titel_en: Is there an MCP server for publishing a website?
titel_nl: Is er een MCP-server om een site te publiceren?
categorie: questions
bundels: website, app
geverifieerd_op: 2026-09-22
bewijs: packages/dorelli/src/mcp.ts, lib/mcp.ts, lib/agent-grenzen.ts, packages/dorelli/server.json
zoekwoorden: mcp, model context protocol, server, publish, publiceren, deploy_site, claude, tool
---
## en
Yes, two of them. A local MCP server that publishes a folder from your machine, for Claude Code, Codex, Cursor or any MCP client, without an account; and a remote MCP server per site, with an agent key, for everything a claimed site can do. Both are included: the trial is free for 14 days and keeping a site is € 10 a month, or € 15 for an app.

| | Local MCP server | Remote MCP server per site |
|---|---|---|
| Runs | on your machine, via `npx` | at `https://mcp.dorelli.cloud/<your-site>` |
| Needs | nothing; an email address on the first deploy | an agent key from the portal, or OAuth in claude.ai and ChatGPT |
| Tools | `deploy_site` (directory, email, name), `site_status` (directory) | `deploy_site`, `site_status`, `site_log`, `form_submissions`, `audit_log`, `limits` |
| Transport | stdio | streamable HTTP, sessionless |
| Best for | "publish this folder" from a coding tool | an agent that operates a site you already keep |

Add the local one to Claude Code with one line; other clients point at the same command:

```bash
claude mcp add dorelli -- npx -y github:dorelli-cloud/cli mcp
```

Your AI then calls `deploy_site` with the folder and your email, and answers with the address. A build folder (`dist`, `build`, `out`, `public`) is found by itself. The key for updates lives in `.dorelli.json` in that folder.

The remote server needs a key with rights you choose on the Agents tab of your site:

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

Every call is a line in the audit log of the site. The package is also on GitHub as `dorelli-cloud/cli`, with a plugin for Claude Code in `dorelli-cloud/plugins`.

### Not for

Building an app image: an app with a database is built on GitHub through a workflow, and `deploy_site` on the App plan takes a finished image, not source code. Not for clients that only speak the old SSE transport; the remote server uses streamable HTTP.

## nl
Ja, twee zelfs. Een lokale MCP-server die een map vanaf jouw machine publiceert, voor Claude Code, Codex, Cursor of elke MCP-client, zonder account; en een MCP-server op afstand per site, met een agent-sleutel, voor alles wat een geclaimde site kan. Allebei inbegrepen: de proef is 14 dagen gratis en een site houden is € 10 per maand, of € 15 voor een app.

| | Lokale MCP-server | MCP-server op afstand per site |
|---|---|---|
| Draait | op jouw machine, via `npx` | op `https://mcp.dorelli.cloud/<jouw-site>` |
| Nodig | niets; een e-mailadres bij de eerste deploy | een agent-sleutel uit het portaal, of OAuth in claude.ai en ChatGPT |
| Tools | `deploy_site` (map, e-mail, naam), `site_status` (map) | `deploy_site`, `site_status`, `site_log`, `form_submissions`, `audit_log`, `limits` |
| Transport | stdio | streamable HTTP, zonder sessie |
| Het beste voor | "publiceer deze map" vanuit een codeertool | een agent die een site bedient die je al houdt |

Voeg de lokale toe aan Claude Code met één regel; andere clients wijzen naar hetzelfde commando:

```bash
claude mcp add dorelli -- npx -y github:dorelli-cloud/cli mcp
```

Je AI roept dan `deploy_site` aan met de map en je e-mail, en antwoordt met het adres. Een bouwmap (`dist`, `build`, `out`, `public`) wordt vanzelf gevonden. De sleutel voor updates staat in `.dorelli.json` in die map.

De server op afstand vraagt een sleutel met rechten die je kiest op het tabblad Agents van je site:

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

Elke aanroep is een regel in het audit-log van de site. Het pakket staat ook op GitHub als `dorelli-cloud/cli`, met een plugin voor Claude Code in `dorelli-cloud/plugins`.

### Niet voor

Een app-image bouwen: een app met database wordt op GitHub gebouwd via een workflow, en `deploy_site` op de App-bundel neemt een kant-en-klaar image, geen broncode. Niet voor clients die alleen het oude SSE-transport spreken; de server op afstand gebruikt streamable HTTP.
