The Render blueprint (render.yaml) now provisions only the backend so it stays within the free-tier service limit. Deploy the React web client separately on Vercel.
- Install the Render CLI (see links below) and run
render blueprint launchfrom the repo root. - When prompted, supply required secrets:
DATABASE_URL,SHADOW_DATABASE_URL,JWT_ACCESS_SECRET,JWT_REFRESH_SECRET,RESEND_API_KEY, andALLOWED_ORIGINS(include your Vercel URL). - Render runs the Prisma migrations and seeds the admin user using the commands baked into
render.yaml.
- Import the repo into Vercel and set the project root to
apps/web. - Configure environment variables:
VITE_API_BASE_URL→ the Render backend URL (e.g.https://helpdesk-backend.onrender.com).
- Use the default build command
npm run buildand output directorydist. - After deploying, add the Vercel domain to the backend
ALLOWED_ORIGINSsecret so CORS and Socket.IO accept the requests.
Documentation: https://render.com/docs/cli
Use Render's hosted MCP server to manage infrastructure from compatible AI tools (Cursor, Claude Code, etc.). The server URL is https://mcp.render.com/mcp.
- Create an API key: Visit https://dashboard.render.com/settings#api-keys and generate a key. Treat it like any production secret—it grants access to every workspace you can access. The MCP server only performs read operations plus env-var updates, but protecting the key is still critical.
- Configure your MCP host: Add the server definition to your tool's MCP config. Example for Cursor (
~/.cursor/mcp.json):
{
"mcpServers": {
"render": {
"url": "https://mcp.render.com/mcp",
"headers": {
"Authorization": "Bearer <YOUR_API_KEY>"
}
}
}
}- Select the workspace: Prompt your tool with
Set my Render workspace to <workspace-name>so future MCP calls target the correct environment.
Once configured, you can issue prompts like "List my Render services" or "Update the env vars for helpdesk-backend" and the MCP server will call the Render API on your behalf. For advanced capabilities or self-hosting instructions, see https://render.com/docs/mcp-server.