Render MCP Server
@niyogi
About Render MCP Server
An unofficial MCP server for Render to help developers ship code faster via Cline, Cursor, and Windsurf
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"render-mcp": {
"command": "node",
"args": [
"bin/render-mcp.js",
"configure",
"--api-key=YOUR_API_KEY"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is Render MCP Server?
A Model Context Protocol server that enables AI assistants to interact with the Render API for deploying and managing services on Render.com. It covers all official Render MCP features plus mutating operations like triggering deploys, deleting resources, and managing custom domains.
How to use Render MCP Server?
Install globally: npm install -g @niyogi/render-mcp. Obtain a Render API key from the Render Dashboard, then run render-mcp configure --api-key=YOUR_API_KEY (or render-mcp configure to be prompted). Start the server with render-mcp start. Connect your AI assistant by configuring it to launch the server—for example, for Claude Code use claude mcp add render -e RENDER_API_KEY=YOUR_API_KEY -- npx -y @niyogi/render-mcp start.
Key features of Render MCP Server
- List, get details, create, deploy, restart, and delete services
- Manage environment variables and custom domains on services
- View deployment history, get single deploy, cancel in-progress deploys
- List workspaces, get details, and select a default workspace
- Filter logs and list log label values; fetch performance metrics
- Manage Postgres and Redis datastores; run read‑only SQL queries on Postgres
Use cases of Render MCP Server
- Deploy a web service or static site from a GitHub repo via an AI assistant
- Monitor service logs and metrics to troubleshoot issues
- Manage multiple Render workspaces and resources programmatically
- Query a Render Postgres database with read‑only SQL through natural language
- Automate service restarts, deploys, and custom domain additions
FAQ from Render MCP Server
What does this MCP server offer beyond the official Render MCP server?
It includes all official features plus mutating operations—triggering deploys, deleting resources, managing custom domains, restarting, and cancelling deploys—which the official server omits.
What dependencies are required?
For query_render_postgres, the pg driver is needed; run npm install after installing the package. No other runtime dependencies beyond Node.js.
How is authentication handled?
Authentication uses a Render API key, configured either via the environment variable RENDER_API_KEY when launching the server, or stored in ~/.render-mcp/config.json using the configure command.
What transport does the server use?
It uses stdio transport, compatible with AI assistants that support MCP over standard input/output.
Can I run read‑only SQL queries on my Render Postgres database?
Yes, the query_render_postgres tool runs single‑statement SELECT, WITH, EXPLAIN, or SHOW queries inside a READ ONLY transaction.
More Developer Tools MCP servers
TalkToFigma
sonnylazuardiTalkToFigma: MCP integration between AI Agent (Cursor, Claude Code, Codex) and Figma, allowing Agentic AI to communicate with Figma for reading designs and modifying them programmatically.
Serena
oraiosA powerful MCP toolkit for coding, providing semantic retrieval and editing capabilities - the IDE for your agent
DevDocs by CyberAGI 🚀
cyberagiincCompletely free, private, UI based Tech Documentation MCP server. Designed for coders and software developers in mind. Easily integrate into Cursor, Windsurf, Cline, Roo Code, Claude Desktop App
sentry-mcp
getsentryAn MCP server for interacting with Sentry via LLMs.
Code Index MCP
johnhuang316A Model Context Protocol (MCP) server that helps large language models index, search, and analyze code repositories with minimal setup
Comments