You signed in with another tab or window. Reload
to refresh your session. You signed out in another tab or window. Reload
to refresh your session. You switched accounts on another tab or window. Reload
to refresh your session. Dismiss alert
niyogi / render-mcp Public
An unofficial MCP server for Render to help developers ship code faster via Cline, Cursor, and Windsurf
2 stars
0 forks
Branches
Tags
Activity
Notifications
You must be signed in to change notification settings
main
Go to file
Code
| Name | | Name | Last commit message | Last commit date |
| --- | --- | --- | --- |
| Latest commit
-------------
niyogi
fix: bump package for npmjs
Mar 16, 2025
96c2ff1
· Mar 16, 2025
History
-------
4 Commits
| | |
| bin | | bin | init build | Mar 16, 2025 |
| src | | src | fix: repair issues with deploy_service and get_service | Mar 16, 2025 |
| tests | | tests | init build | Mar 16, 2025 |
| .gitignore | | .gitignore | init build | Mar 16, 2025 |
| LICENSE | | LICENSE | init build | Mar 16, 2025 |
| README.md | | README.md | fix commands | Mar 16, 2025 |
| package-lock.json | | package-lock.json | init build | Mar 16, 2025 |
| package.json | | package.json | fix: bump package for npmjs | Mar 16, 2025 |
| tsconfig.json | | tsconfig.json | init build | Mar 16, 2025 |
| View all files | | |
Deploy to Render.com
directly through AI assistants.
This MCP (Model Context Protocol) server allows AI assistants like Claude to interact with the Render API, enabling deployment and management of services on Render.com.
npm install -g @niyogi/render-mcp
Get your Render API key from Render Dashboard
Configure the MCP server with your key:
node bin/render-mcp.js configure --api-key=YOUR_API_KEY
Alternatively, you can run node bin/render-mcp.js configure
without the --api-key
flag to be prompted for your API key.
node bin/render-mcp.js start
node bin/render-mcp.js config
node bin/render-mcp.js doctor
Note: If you've installed the package globally, you can also use the shorter commands:
render-mcp start
render-mcp config
render-mcp doctor
Add the following to your Cline MCP settings file:
json
{
"mcpServers": {
"render": {
"command": "node",
"args": ["/path/to/render-mcp/bin/render-mcp.js", "start"],
"env": {
"RENDER_API_KEY": "your-render-api-key"
},
"disabled": false,
"autoApprove": []
}
}
}
Restart Cline for the changes to take effect
You can now interact with Render through Claude:
Claude, please deploy my web service to Render
Install the render-mcp package:
shell
npm install -g @niyogi/render-mcp
Configure your API key:
shell
node bin/render-mcp.js configure --api-key=YOUR_API_KEY
Start the MCP server in a separate terminal:
shell
node bin/render-mcp.js start
In Windsurf/Cursor settings, add the Render MCP server:
For custom applications using Claude's API directly:
Ensure the render-mcp server is running:
shell
node bin/render-mcp.js start
In your application, when sending messages to Claude via the API, include the MCP server connections in your request:
json
{
"mcpConnections": [\
{\
"name": "render",\
"transport": {\
"type": "stdio",\
"command": "node",\
"args": ["/path/to/render-mcp/bin/render-mcp.js", "start"]\
}\
}\
]
}
Claude will now be able to interact with your Render MCP server
Here are some example prompts you can use with Claude once the MCP server is connected:
git clone https://github.com/niyogi/render-mcp.git
cd render-mcp
npm install
npm run build
npm test
MIT
An unofficial MCP server for Render to help developers ship code faster via Cline, Cursor, and Windsurf
No releases published
No packages published
You can’t perform that action at this time.