← redu.cloud

INDIVIDUAL MCP TOOL

deploy_overview

Orientation for deploying an app on redu.cloud: the end-to-end flow, the two source modes (git vs upload), how to handle a missing Dockerfile or a database, when (and when NOT) to split a deploy across multiple VMs, verifying a deploy functionally, and how to debug a failed build.

redu.cloudnone authenticationAvailability not checked

LIVE ENDPOINT

https://mcp.redu.cloud/mcp

No auth detected

Connect to this endpoint to inspect the live schema for deploy_overview and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Potential side effects detected · medium confidence · heuristic, not a guarantee.

  • A tool name or description contains a write-action term.

Parent server

redu.cloud

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.redu-cloud-mcp]
url = "https://mcp.redu.cloud/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "redu-cloud-mcp": {
      "type": "http",
      "url": "https://mcp.redu.cloud/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: redu-cloud-mcp
Remote MCP URL: https://mcp.redu.cloud/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "redu-cloud-mcp": {
      "url": "https://mcp.redu.cloud/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "redu-cloud-mcp": {
      "type": "http",
      "url": "https://mcp.redu.cloud/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "redu-cloud-mcp",
  "transport": "streamable-http",
  "url": "https://mcp.redu.cloud/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • whoami — Verifies your redu.cloud credential with a REAL server round-trip and returns your identity + live quota.
  • check_deploy_prerequisites — The deploy ENTRY GATE — run this first when a user wants to deploy.
  • create_api_key — Mints a NEW least-privilege redu API key for a deployed app or automation to use (e.g.
  • integrate_overview — Orientation for wiring a redu.cloud capability (backups, DNS, extra storage, a managed DB, ...) INTO an app already deployed on redu, e.g.
  • prepare_upload — Returns the LOCAL shell commands to package your working directory and upload it for an upload-mode deploy (no git, no PAT).
  • scaffold_local — OPTIONAL preflight: returns a podman-compose.yml + .env so the user can run the app (and a throwaway local Postgres) on THEIR machine before deploying to redu — to see it run / sanity-check the container.
  • plan_instance — Aggregates images/flavors/keypairs/networks/security groups into human-friendly choices.
  • plan_managed_datastore — Plans a direct managed datastore create without provisioning anything.