Hosting Claude can deploy to and debug
Claude is good at reading a stack trace and working out what to change. That is only useful if it can see the logs and edit the files. Add Redon3 as a custom connector and it can do both, on your own account.
Set it up once, then just ask
Redon3 speaks MCP over HTTP with OAuth, so any MCP capable Claude client can use it, including claude.ai in the browser and the Claude desktop app.
- Add the connector. Add
https://redon3.com/mcp as a custom connector and sign in with OAuth. Claude gets 28 tools scoped to your account. - Describe the thing you want running. A Discord bot, a scheduled scraper, an API, a static page. Claude writes the project into a panel rather than handing you a zip.
- Claude configures and starts it. It sets the panel type, runtime, and start file, stores secrets as encrypted environment variables, then starts the panel.
- It debugs from the real logs. Claude reads recent output even after the process exited, with the exit code attached, so it works from the actual failure instead of guessing.
What a debugging turn looks like
You say the bot died again. Claude pulls the logs for the panel, sees exit_code 1 and a ModuleNotFoundError for a package that is imported but missing from requirements.txt, writes the corrected requirements.txt, restarts the panel, and reads the new output to confirm it held. Nothing is copied between windows.
Claude cannot delete the panel while it does this. There is no tool for it, so the worst case is a bad file you can overwrite.
What you can put on a panel
- Node.js 20, with dependencies installed from package.json on start.
- Python 3.11, with dependencies installed from requirements.txt.
- Background workers that stay running, like a bot on a gateway connection.
- Web apps and APIs, on a free yourproject.redon3.com subdomain with HTTPS.
- Static sites, served straight from a folder.
- Scheduled jobs that run hourly, every six hours, or daily.
Common questions
- Which Claude clients work with this?
- Any client that supports custom MCP connectors over HTTP with OAuth, which covers claude.ai in the browser and the Claude desktop app. The docs page walks through adding it.
- Can Claude fix a crash without me?
- Usually, if the cause is in the logs: a missing dependency, a bad path, a syntax error, a missing environment variable. It reads the output with the exit code, edits the file, and restarts. Anything needing a decision it will bring back to you.
- Can Claude see my secrets?
- It can set an environment variable and list the names, but there is no tool that returns a stored value. Once a secret is saved, Claude cannot read it back, and neither can anyone else through the API.
- Can I still do everything by hand?
- Yes. The file manager, live logs, and a real terminal in the browser are all there. The AI connection is an extra way in, not a replacement for the panel.
- What does it cost?
- Panels are 4.99, 8.99, or 12.99 USD per 30 days depending on the resources you want. The Claude connection adds nothing to that.