Skills teach your coding agent how Render works. MCP lets the agent call Render’s API (list services, deploy, read logs) from the chat.
- If you will deploy with the Dashboard only, finish section 1 (and skim 2). Skip section 3.
- If you want the MCP deploy path later, do all three sections.
Docs: Coding agents · MCP server · skills repo
1. Install the Render plugin (skills)
| Tool | Install |
|---|---|
| Cursor (room default) | Settings → Plugins → search render → install → restart Cursor |
| Claude Code | /plugins → search render → install → restart |
| Codex | /plugins → search render → install → restart |
Alternate:
render skills install2. Glance at the catalog (once)
About 21 skills. You only need a few today.
| Group | Skills |
|---|---|
| Interfaces | render-cli, render-mcp |
| Lifecycle | render-deploy, render-docker, render-scaling |
| Diagnostics | render-debug, render-monitor |
| Config | render-blueprints, render-domains, render-env-vars, render-networking |
| Service types | render-web-services, render-static-sites, render-background-workers, render-cron-jobs, render-private-services, render-workflows |
| Datastores | render-postgres, render-keyvalue, render-disks |
| Migration | render-migrate-from-heroku |
Focus today: render-blueprints, render-deploy, and (for MCP) render-mcp. Recovery: render-debug, render-monitor.
3. Optional: add the Render MCP server
Do this only if you plan to deploy with the agent (Path B later). Dashboard deploy does not need MCP.
3a. Create a Render API key
- Open API Keys Go to Account Settings → API Keys.
- Create a key Click Create API Key. Name it something like
firstdeploy-laptop. - Copy it once It starts with
rnd_. Store it somewhere safe.
3b. Put the key where your agent can read it
export RENDER_API_KEY=rnd_xxx...Then:
source ~/.zshrc # or ~/.bashrcRestart your editor after exporting the key.
3c. Confirm MCP is connected
The Render plugin points at https://mcp.render.com/mcp and uses RENDER_API_KEY.
In your agent chat, try:
Using the Render MCP tools, list my services in the current workspace.Done when: the agent returns a list (even an empty one) without a 401 error. If you are already in the Atlanta workshop workspace, ask it to use that workspace.
What you learned
- Plugin = skills; MCP = live Render API from the agent
- Dashboard path can skip section 3
- Next: write render.yaml