render-deploy

Generates render.yaml Blueprints and deploys applications to Render via MCP tools.

Updated Jun 14, 2026
One-click install
npx skills add https://github.com/ironkid90-s/lucky5-v7 --skill render-deploy-ironkid90-s
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: render-deploy
Source: https://github.com/ironkid90-s/lucky5-v7/tree/main/.github/skills/render-deploy
Command: npx skills add https://github.com/ironkid90-s/lucky5-v7 --skill render-deploy-ironkid90-s

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) and assets (resource) components.

What problem does it solve? Deploying applications to Render requires correctly configuring services, databases, environment variables, and port binding, which is error-prone when done manually. This Skill analyzes a codebase, generates a validated render.yaml Blueprint, and guides deployment through Dashboard deeplinks or direct MCP service creation. ## Core Features & Use Cases - Blueprint Generation: Analyzes the codebase to detect runtime, build/start commands, and datastores, then produces a render.yaml with services, databases, and environment variables. - Direct Service Creation: Creates web services, static sites, cron jobs, PostgreSQL databases, and Key Value stores instantly through Render MCP tools. - Post-Deploy Verification: Checks deploy status, error logs, health endpoints, and port binding, with troubleshooting guidance for common failures. - Use Case: A developer with a Node.js API and PostgreSQL database pushed to GitHub asks to deploy on Render; the Skill generates a Blueprint with a web service and database, validates it with the Render CLI, and provides a Dashboard deeplink to apply it. ## Quick Start Deploy this repository to Render by generating a render.yaml Blueprint and giving me the Dashboard deeplink.

Frequently Asked Questions about render-deploy

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I deploy an application to Render?

Push your code to GitHub, GitLab, or Bitbucket, then either generate a render.yaml Blueprint and open the Dashboard deeplink, or create services directly via Render MCP tools. The Skill analyzes your codebase to determine runtime, build commands, and required environment variables.

How do I create a render.yaml Blueprint file?

Define services with type, name, runtime, buildCommand, and startCommand, plus databases and envVars as needed. Validate the file with render blueprints validate, commit and push it, then open the Blueprint deeplink in the Render Dashboard to apply it.

When should I use a Blueprint versus direct service creation on Render?

Use direct MCP creation for a single web service or static site with no databases or workers. Use a Blueprint when you need multiple services, databases, cron jobs, private services, or version-controlled infrastructure as code.

Can Render deploy a prebuilt Docker image?

Yes, Render supports image-backed services using runtime: image in a Blueprint, but the render.yaml must still live in a Git repository. MCP tools cannot create image-backed services, so use the Render Dashboard or API for that flow.

Why does my Render deployment fail with port binding errors?

Render web services must bind to 0.0.0.0 on the port provided by the PORT environment variable, not localhost or a hardcoded port. Update your start command or server code to read process.env.PORT and listen on 0.0.0.0, then redeploy.

How do I handle secrets in a Render Blueprint?

Mark sensitive environment variables with sync: false in render.yaml so users fill them in the Render Dashboard instead of committing values to Git. Non-sensitive config can use hardcoded values, and database URLs should use fromDatabase references.