- Render MCP
Render MCP
Render is a cloud hosting platform offering a simplified way to build, deploy, and scale applications and websites.
This MCP (Model Context Protocol) server makes managing your Render.com account refreshingly easy. Skip the endless clicking, just connect it to your favorite MCP client (like Claude app or windsurf/cursor), tell your LLM what you want done, and let it handle your Render services for you. Deployment management without the UI hassle, because you’ve got better things to do.
MCP server capabilities:
- Get services list
- Get deploys list
- Trigger deploy
- Retrieve deploy
- Cancel deploy
- List environment variables
- Add/update environment variables
- Delete environment variables
- Get logs
Usage
To integrate this server with the MCP client (ex: claude app, windsurf/cursor, cline), add the following to your app's server configuration:
NPX
{
"mcpServers": {
"render": {
"command": "npx",
"args": [
"-y",
"mcp-render"
],
"env": {
"RENDER_API_KEY": "<YOUR_RENDER_API_KEY>"
}
}
}
}
Commands to try
- Get me render services list.
- What is the status of my last deploy for
<service name>. - Check logs for
<service name>. - Redeploy
<service name>. - Add new environment variable for
<service name>,<env key> =<env value>.
Server Config
{
"mcpServers": {
"render": {
"command": "npx",
"args": [
"-y",
"mcp-render"
],
"env": {
"RENDER_API_KEY": "<YOUR_RENDER_API_KEY>"
}
}
}
}