Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
Render
cloud

Render MCP Server

Cloud application platform

deploymentcloudhosting

About

## 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.

Installation

Configuration
{
  "mcpServers": {
    "render": {
      "mcpServers": {
        "render": {
          "env": {
            "RENDER_API_KEY": "your-api-key"
          },
          "args": [
            "-y",
            "render-mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Get Render API key
  2. 2Configure environment
  3. 3Manage services

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers