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
Neon
database

Neon MCP Server

Serverless Postgres database

databasepostgresserverless

About

## Neon MCP Server: Serverless Postgres The **Neon MCP Server** integrates Neon serverless Postgres into Google Antigravity, enabling database operations with branching, autoscaling, and instant provisioning directly from your development environment. ### Why Neon MCP? - **Serverless**: Scale to zero, pay for what you use - **Branching**: Git-like database branching - **Instant Start**: Sub-second cold starts - **Postgres Compatible**: Full PostgreSQL compatibility - **Autoscaling**: Automatic compute scaling ### Key Features #### 1. SQL Queries ```python # Execute query result = await mcp.query(""" SELECT id, name, email, created_at FROM users WHERE status = $1 ORDER BY created_at DESC LIMIT 50 """, params=["active"]) for row in result["rows"]: print(f"User: {row['name']} ({row['email']})") ``` #### 2. Branch Operations ```python # Create branch branch = await mcp.create_branch( parent_id="main", name="feature-user-auth" ) print(f"Branch created: {branch['id']}") print(f"Connection string: {branch['connection_string']}") # List branches branches = await mcp.list_branches() for b in branches: print(f"Branch: {b['name']} ({b['state']})") # Delete branch await mcp.delete_branch(branch_id=branch["id"]) ``` #### 3. Project Management ```python # Get project info project = await mcp.get_project() print(f"Project: {project['name']}") print(f"Region: {project['region_id']}") # Get endpoints endpoints = await mcp.list_endpoints() for ep in endpoints: print(f"Endpoint: {ep['host']} ({ep['type']})") # Get consumption usage = await mcp.get_consumption() print(f"Compute: {usage['compute_seconds']}s") print(f"Storage: {usage['storage_bytes'] / 1024 / 1024}MB") ``` #### 4. Database Operations ```python # Create database await mcp.create_database(name="myapp_staging") # List databases databases = await mcp.list_databases() for db in databases: print(f"Database: {db['name']}") # Create role await mcp.create_role( name="readonly", password="secure-password" ) ``` ### Configuration ```json { "mcpServers": { "neon": { "command": "npx", "args": ["-y", "@anthropic/mcp-neon"], "env": { "NEON_API_KEY": "your-api-key", "NEON_PROJECT_ID": "your-project-id", "DATABASE_URL": "postgres://user:pass@host/db" } } } } ``` ### Use Cases **Development Branches**: Create database branches for features. **CI/CD**: Spin up test databases for pipelines. **Serverless Apps**: Database for serverless functions. **Cost Optimization**: Pay only for actual usage. The Neon MCP enables serverless Postgres within your development environment.

Installation

Configuration
{
  "mcpServers": {
    "neon": {
      "mcpServers": {
        "neon": {
          "env": {
            "NEON_API_KEY": "your-neon-api-key"
          },
          "args": [
            "-y",
            "@neondatabase/mcp-server-neon"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Sign up at neon.tech
  2. 2Get API key from dashboard
  3. 3Configure environment variable

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