Render MCP Server

Cloudstdiohttp-streaming
Repository

Render's official MCP server for interacting with your Render cloud resources via LLMs. Lets agents list and inspect services, create and manage deploys, read logs and metrics, and query managed Postgres and Key Value instances. Useful for deploying, debugging, and monitoring applications hosted on Render directly from an MCP-compatible assistant.

Connect

Add this configuration to .claude/mcp.json

Transport:
{
  "mcpServers": {
    "render": {
      "command": "npx",
      "args": [],
      "env": {
        "RENDER_API_KEY": "<YOUR_RENDER_API_KEY>"
      }
    }
  }
}

Tools (3)

list_services

List the services in the authenticated Render account.

{
  "type": "object",
  "properties": {}
}

get_deploys

List recent deploys for a Render service.

{
  "type": "object",
  "required": [
    "service_id"
  ],
  "properties": {
    "service_id": {
      "type": "string",
      "description": "ID of the Render service"
    }
  }
}

get_logs

Retrieve logs for a Render service to debug issues.

{
  "type": "object",
  "required": [
    "service_id"
  ],
  "properties": {
    "limit": {
      "type": "integer",
      "description": "Maximum number of log lines to return"
    },
    "service_id": {
      "type": "string",
      "description": "ID of the Render service"
    }
  }
}

Resources

This server does not expose any resources.

Prompts

This server does not expose any prompts.

Server Information

Author
Render (@render-oss)
Repository
https://github.com/render-oss/render-mcp-server
Stars
0
Last Updated
July 12, 2026