Render MCP Server — Hosted for Any AI Agent
MCP Server language Hosted language PublicList services, trigger deploys, manage environment variables, and view logs on Render — AI-native cloud deployment platform.
Use with AI AssistantsMCP
Connect Claude, Cursor, or any MCP-compatible client — then call tools directly
① Add This MCP Server
Paste into your AI client config — then all its tools are available instantly.
{
"mcpServers": {
"render": {
"url": "https://mcp.aerostack.dev/s/aerostack/mcp-render",
"headers": {
"Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
}
}
}
}Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.
② Call a Tool
Ask your AI assistant to call a specific tool, or send raw JSON-RPC:
Natural Language Prompt
“Use the _ping tool to verify render api connectivity by listing the first service. used internally by aerostack to validate credentials”
Using a Workspace?
Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.
description Overview
mcp-render — Render MCP Server
List services, trigger deploys, manage environment variables, and view logs on Render from any AI agent.
Render is a unified cloud platform for deploying web services, static sites, cron jobs, and background workers from Git. This MCP server connects your AI agents to the Render REST API — letting them list services, check deploy status, trigger new deploys, manage environment variables, inspect custom domains, and pull logs, all from natural language without opening the Render dashboard.
Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-render
What You Can Do
- List all Render services with type and status filters to get a quick overview of your infrastructure
- Trigger deploys and optionally clear the build cache for a fresh start
- Check deploy status and history to see what shipped and when
- Manage environment variables — list, set, or delete without touching the dashboard
- View custom domains and their verification status
- Pull deploy logs to diagnose build or runtime failures
Available Tools
| Tool | Description |
|---|---|
_ping |
Verify Render API connectivity (internal health check) |
list_services |
List all services with optional type/status filter |
get_service |
Get full details of a specific service |
list_deploys |
List recent deploys for a service |
trigger_deploy |
Trigger a new deploy (with optional cache clear) |
get_deploy |
Get details of a specific deploy |
list_env_vars |
List all environment variables for a service |
set_env_var |
Create or update an environment variable |
delete_env_var |
Delete an environment variable |
list_custom_domains |
List custom domains attached to a service |
get_service_logs |
Retrieve deploy logs for a service |
Configuration
| Variable | Required | Description | How to Get |
|---|---|---|---|
RENDER_API_KEY |
Yes | Render API key for REST API authentication | dashboard.render.com/account/settings → API Keys → Create API Key → copy the key |
Quick Start
Add to Aerostack Workspace
- Go to aerostack.dev → Your Project → MCPs
- Search for "Render" and click Add to Workspace
- Add your
RENDER_API_KEYunder Project → Secrets
Once added, every AI agent in your workspace can manage your Render services automatically — no per-user setup needed.
Example Prompts
"List all my Render services and show which ones are currently live"
"Trigger a deploy for my API service and clear the build cache"
"Show me the last 5 deploys for service srv-abc123 — did any fail?"
"What environment variables are set on my worker service?"
"Get the deploy logs for the most recent failed deploy on my web app"
Direct API Call
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-render \
-H 'Content-Type: application/json' \
-H 'X-Mcp-Secret-RENDER-API-KEY: rnd_your-api-key' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_services","arguments":{}}}'
Security Notes
RENDER_API_KEYis injected at the Aerostack gateway layer — never stored in this worker's code- The API key grants full account access — use a scoped API key if Render supports it
- Environment variable values are returned in plaintext; be mindful of sensitive values in AI agent responses
License
MIT
terminal Tools (11)
Available tools on this MCP server. Each tool can be called directly from any AI agent.
_ping #1 Verify Render API connectivity by listing the first service. Used internally by Aerostack to validate credentials.
list_services #2 List all services on your Render account with optional type and status filters
get_service #3 Get full details of a specific Render service by ID
list_deploys #4 List recent deploys for a Render service
trigger_deploy #5 Trigger a new deploy for a Render service. Optionally deploy a specific commit.
get_deploy #6 Get details of a specific deploy by deploy ID
list_env_vars #7 List all environment variables for a Render service
set_env_var #8 Create or update an environment variable on a Render service
delete_env_var #9 Delete an environment variable from a Render service
list_custom_domains #10 List all custom domains attached to a Render service
get_service_logs #11 Retrieve recent logs for a Render service (build or deploy logs via the deploy endpoint)
Details
language Live Endpoint
https://mcp.aerostack.dev/s/aerostack/mcp-render
Sub-50ms globally · Zero cold start
Publisher
Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.
More in API Connectors
Browse API Connectors MCPs →Aerostack Registry
by @aerostack
Discover and invoke any MCP, Function, or Skill published to the Aerostack marketplace — the universal AI capability hub.
Algolia
by @aerostack
Search indexes, manage records, browse data, and configure ranking in Algolia — AI-native instant search access.
Arangodb
by @aerostack
Query documents, run AQL, traverse graphs, and manage collections in your ArangoDB database — AI-native multi-model database access.
Ayrshare
by @aerostack
Post, schedule, and analyze social media across 13 platforms — Facebook, Instagram, X, LinkedIn, TikTok, Bluesky, Threads, Reddit, Pinterest, YouTube, Telegram, Snapchat, Google Business.
Basecamp
by @aerostack
Manage projects, to-dos, messages, schedules, and campfire chats in Basecamp — AI-native project management.
Bigquery
by @aerostack
Run SQL queries, list datasets and tables, inspect schemas, and export results from Google BigQuery — AI-native data warehouse access.
Frequently asked questions
What is the Render MCP server and what can it do? +
The Render MCP server is hosted on Aerostack and exposes these tools to your AI agent: `_ping`, `list_services`, `get_service`, `list_deploys`, `trigger_deploy`. You get one hosted URL — no self-hosting — that works from Claude, Cursor, ChatGPT, Gemini, VS Code, or any MCP-compatible client, and you can share it with your team or combine it with other MCP servers in a workspace.
Is the Render MCP server hosted, or do I have to run it myself? +
It's hosted on Aerostack's edge infrastructure — you don't deploy or maintain anything. Add it to a workspace and you get one authenticated URL, with secrets encrypted, that any AI agent or editor can connect to. Use it solo or share the same URL across your whole team.
Which AI agents and editors can use the Render MCP server? +
Any MCP client: Claude and Claude Code, Cursor, ChatGPT, Gemini, Windsurf, Cline, VS Code, and custom agents. Because it's one hosted URL, the same Render MCP server works everywhere — and you can compose it with other MCP servers, skills, and functions behind a single workspace URL.
How do I install the Render MCP server in Claude Desktop? +
Add the following to your Claude Desktop config (`claude_desktop_config.json`): ```json { "mcpServers": { "@aerostack/mcp-render": { "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-render"] } } } ``` Then restart Claude Desktop and the tools will appear automatically.
How do I use the Render MCP server in Cursor? +
In Cursor, open **Settings → MCP** and add: ```json { "name": "@aerostack/mcp-render", "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-render"] } ``` Save and reload Cursor. The MCP tools will be available in Agent mode.
Does Render MCP require authentication? +
Yes. Render requires authentication. Check the MCP's documentation for the required credentials.