Cloud application platform
## Render MCP Server: Unified Cloud Platform The **Render MCP Server** integrates Render into Google Antigravity, enabling full-stack deployment with static sites, web services, databases, and background workers directly from your development environment. ### Why Render MCP? - **Zero DevOps**: Simple, powerful cloud without complexity - **Native Runtimes**: Docker, Node.js, Python, Go, Rust - **Managed Databases**: PostgreSQL with automatic backups - **Auto-Scaling**: Scale based on traffic automatically - **Preview Environments**: Automatic PR previews ### Key Features #### 1. Service Deployment ```python # Create web service service = await mcp.create_service( name="my-api", type="web_service", env="docker", repo="https://github.com/org/repo", branch="main", plan="starter" ) print(f"URL: {service['service']['serviceDetails']['url']}") # List services services = await mcp.list_services() for s in services: print(f"Service: {s['service']['name']} - {s['service']['type']}") ``` #### 2. Service Management ```python # Deploy latest await mcp.deploy(service_id="srv_123") # Get deploy status deploy = await mcp.get_deploy( service_id="srv_123", deploy_id="dep_456" ) print(f"Status: {deploy['deploy']['status']}") # Scale service await mcp.scale( service_id="srv_123", num_instances=3 ) ``` #### 3. Environment Variables ```python # Set env vars await mcp.update_env_vars( service_id="srv_123", env_vars=[ {"key": "DATABASE_URL", "value": "postgres://..."}, {"key": "API_KEY", "value": "secret"} ] ) # Get env vars vars = await mcp.get_env_vars(service_id="srv_123") ``` #### 4. Database Operations ```python # Create PostgreSQL db = await mcp.create_database( name="myapp-db", database_name="myapp", database_user="myapp", plan="starter" ) print(f"Connection URL: {db['database']['connectionInfo']['internalConnectionString']}") # List databases dbs = await mcp.list_databases() ``` ### Configuration ```json { "mcpServers": { "render": { "command": "npx", "args": ["-y", "@anthropic/mcp-render"], "env": { "RENDER_API_KEY": "your-api-key" } } } } ``` ### Use Cases **Full-Stack Apps**: Deploy frontend and backend together. **APIs**: REST and GraphQL API services. **Background Jobs**: Cron jobs and workers. **Databases**: Managed PostgreSQL and Redis. The Render MCP enables unified cloud deployment within your development environment.
{
"mcpServers": {
"render": {
"mcpServers": {
"render": {
"env": {
"RENDER_API_KEY": "your-api-key"
},
"args": [
"-y",
"render-mcp-server"
],
"command": "npx"
}
}
}
}
}