The Official Render MCP Server
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"render-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
The Render MCP Server is a Model Context Protocol (MCP) server that allows you to interact with your Render resources via LLMs.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in cloud / devops
MCP server for using the GitLab API
MCP Server for GCP environment for interacting with various Observability APIs.
Enhanced MCP server for GitLab: group projects listing and activity tracking
Yunxiao MCP Server provides AI assistants with the ability to interact with the Yunxiao platform. It provides a set of tools that interact with Yunxiao's API, allowing AI assistants to manage Codeup repository, Project, Pipeline, Packages etc.
MCP Security Weekly
Get CVE alerts and security updates for Render Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
The Render MCP Server is a Model Context Protocol (MCP) server that allows you to interact with your Render resources via LLMs.
Get started with the MCP server by following the official docs: https://render.com/docs/mcp-server
Please leave feedback via filing a GitHub issue if you have any feature requests, bug reports, suggestions, comments, or concerns.
list_workspaces - List the workspaces that you have access to
select_workspace - Select a workspace to use
ownerID: The ID of the workspace to use (string, required)get_selected_workspace - Get the currently selected workspace
list_services - List all services in your Render account
includePreviews: Whether to include preview services, defaults to false (boolean, optional)get_service - Get details about a specific service
serviceId: The ID of the service to retrieve (string, required)create_web_service - Create a new web service in your Render account
name: A unique name for your service (string, required)runtime: Runtime environment for your service (string, required). Accepted values:
nodepythongorustrubyelixirdockerbuildCommand: Command used to build your service (string, required)startCommand: Command used to start your service (string, required)repo: Repository containing source code (string, optional)branch: Repository branch to deploy (string, optional)plan: Plan for your service (string, optional). Accepted values:
starterstandardpropro_maxpro_pluspro_ultraautoDeploy: Whether to automatically deploy the service (string, optional). Defaults to yes. Accepted values:
yes: Enable automatic deploymentsno: Disable automatic deploymentsregion: Geographic region for deployment (string, optional). Defaults to oregon. Accepted values:
oregonfrankfurtsingaporeohiovirginiaenvVars: Environment variables array (array, optional)create_static_site - Create a new static site in your Render account
name: A unique name for your service (string, required)buildCommand: Command to build your app (string, required)repo: Repository containing source code (string, optional)branch: Repository branch to deploy (string, optional)autoDeploy: Whether to automatically deploy the service (string, optional). Defaults to yes. Accepted values:
yes: Enable automatic deploymentsno: Disable automatic deploymentspublishPath: Directory containing built assets (string, optional)envVars: Environment variables array (array, optional)create_cron_job - Create a new cron job in your Render account
name: A unique name for your cron job (string, required)schedule: Cron schedule expression (string, required). Uses standard cron syntax with 5 fields: minute (0-59), hour (0-23), day of month (1-31), month (1-12), day of week (0-6, Sunday=0). Examples:
0 0 * * *: Daily at midnight*/15 * * * *: Every 15 minutes0 9 * * 1-5: Weekdays at 9am0 0 1 * *: First day of each month at midnightruntime: Runtime environment for your cron job (string, required). Accepted values:
node