This Gemini CLI extension integrates with Render.com's Model Context Protocol (MCP) server, providing tools to manage and interact with Render.com services directly from the Gemini CLI.
This extension connects to Render.com's remote MCP server, which provides tools for:
- Managing Render.com services
- Deploying applications
- Monitoring service health
- Managing environment variables
- And more Render.com operations
- Gemini CLI installed
- Node.js (v18 or later)
- A Render.com API key
-
Get your Render.com API key from https://dashboard.render.com/
- Go to Account Settings → API Keys
- Create a new API key
-
Create a
.envfile in the extension directory:cp .env.example .env
Then edit
.envand add your API key:RENDER_API_KEY=your_render_api_key_hereNote: The
.envfile is gitignored and will not be committed to version control. -
Install the extension:
gemini extensions install /path/to/render-com-mcp
-
Enable the extension:
gemini extensions enable render-com-mcp
Once installed and enabled, you can use Render.com tools directly in your Gemini CLI conversations:
gemini chatThen in the chat:
- "List my Render services"
- "Deploy my latest changes to production"
- "Check the status of my web service"
- "Update environment variables for my service"
The extension consists of:
gemini-extension.json- Extension configurationstart-server.js- Wrapper script that loads.envand starts the MCP connection.env- Your Render.com API key (create from.env.example)
The extension automatically loads your API key from the .env file in the extension directory.
Make sure your .env file exists and contains a valid RENDER_API_KEY:
cat .env # Unix/Mac/Linux
type .env # WindowsThe file should contain:
RENDER_API_KEY=your_actual_api_key_here
- Verify Node.js is installed:
node --version - Check that the
.envfile is in the extension directory - Verify the API key in
.envis correct
Verify you have internet access and can reach https://mcp.render.com/mcp
Apache-2.0