Publish websites from Gemini with Revdoku
Use Revdoku with the Gemini CLI and other MCP-capable Gemini agents. Sign up, copy the connection message, paste it into Gemini, and publish.
1. Create a Revdoku account first
Setup starts in the Revdoku app. Go to https://app.revdoku.com, create an account, and sign in before connecting any AI app.

This is the first step for every connection: the AI tool connects to your existing Revdoku account, not an anonymous prompt.
2. Copy the connection message
After signing in, open the Revdoku app and click New, then choose Copy Instructions for AI. This copies the current Revdoku connection message for Gemini, Claude, ChatGPT, Codex, and similar agents.

Paste the copied message into your Gemini session and send it. Gemini follows the instructions and connects Revdoku to your account.
3. Connect the Gemini CLI manually
Prefer a manual setup? Add Revdoku with one command (-s user makes it available in every project):
gemini mcp add --transport http -s user revdoku https://app.revdoku.com/mcp
Or open ~/.gemini/settings.json (or .gemini/settings.json in your project) and add Revdoku under mcpServers:
{
"mcpServers": {
"revdoku": {
"httpUrl": "https://app.revdoku.com/mcp"
}
}
}
Then restart the Gemini CLI. Revdoku uses OAuth, so Gemini opens a browser window to sign in to your Revdoku account (run /mcp auth revdoku inside the CLI if it does not). The same mcpServers config also works for Gemini Code Assist in agent mode.
You’ve connected Revdoku. Now just ask
publish to Revdokuand Gemini publishes it as a live URL.
Test the Gemini connection
Once connected, ask Gemini to build a small static website, save the files in Revdoku, publish index.html, and return the live link.
A good first test prompt:
Create a one-page project status website, save the files in Revdoku, publish it, and give me the public URL. If I ask for changes later, update the same Revdoku bucket and republish the same URL.
Check that the returned link opens, then ask for one small change and confirm the same bucket is updated instead of creating a new site.
Check the Revdoku result from ChatGPT
If Revdoku is also connected in ChatGPT, you can ask ChatGPT to inspect the same bucket or summarize the publish workflow after Gemini creates the files.

Takeaway
Sign in to Revdoku first, copy the connection message, paste it into the Gemini CLI, publish a small static site, then republish the same bucket after changes.
Other ways to connect
- Connect your AI tool to Revdoku: every supported agent in one place.
- Local command-line setup: the generic CLI agent flow that works with any MCP-capable terminal agent.