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

PlanetScale MCP Server

MySQL-compatible serverless database

databasemysqlserverless

About

## PlanetScale MCP Server: Serverless MySQL Platform The **PlanetScale MCP Server** integrates PlanetScale into Google Antigravity, enabling serverless MySQL operations with branching, non-blocking schema changes, and instant scaling directly from your development environment. ### Why PlanetScale MCP? - **Serverless**: Scale automatically without management - **Branching**: Git-like database branching for development - **Non-Blocking DDL**: Schema changes without downtime - **Vitess Powered**: Built on Vitess sharding technology - **Global**: Multi-region deployment ### Key Features #### 1. SQL Queries ```python # Execute query result = await mcp.query(""" SELECT id, name, email, created_at FROM users WHERE status = ? 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( database="myapp", name="feature-auth", parent_branch="main" ) # List branches branches = await mcp.list_branches(database="myapp") for b in branches: print(f"Branch: {b['name']} ({b['production']})") # Create deploy request deploy = await mcp.create_deploy_request( database="myapp", branch="feature-auth", into_branch="main" ) # Delete branch await mcp.delete_branch(database="myapp", branch="feature-auth") ``` #### 3. Schema Management ```python # Get schema schema = await mcp.get_schema( database="myapp", branch="main" ) # Compare branches diff = await mcp.diff_branches( database="myapp", base="main", head="feature-auth" ) for change in diff["schema_changes"]: print(f"Change: {change['type']} - {change['name']}") ``` #### 4. Database Operations ```python # Get database info db = await mcp.get_database(name="myapp") print(f"Database: {db['name']} - Region: {db['region']}") # Get connection strings connections = await mcp.get_connections( database="myapp", branch="main" ) print(f"Host: {connections['host']}") ``` ### Configuration ```json { "mcpServers": { "planetscale": { "command": "npx", "args": ["-y", "@anthropic/mcp-planetscale"], "env": { "PLANETSCALE_ORG": "your-org", "PLANETSCALE_TOKEN": "your-api-token", "DATABASE_URL": "mysql://user:pass@host/db" } } } } ``` ### Use Cases **Feature Development**: Create branches for feature development. **Zero-Downtime Migrations**: Schema changes without locks. **CI/CD**: Integrate database changes with pipelines. **Scaling**: Handle traffic spikes automatically. The PlanetScale MCP enables serverless MySQL within your development environment.

Installation

Configuration
{
  "mcpServers": {
    "planetscale": {
      "mcpServers": {
        "planetscale": {
          "env": {
            "DATABASE_URL": "mysql://user:pass@host/db?sslaccept=strict"
          },
          "args": [
            "-y",
            "planetscale-mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Create database at planetscale.com
  2. 2Get connection string
  3. 3Configure DATABASE_URL

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