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

Couchbase MCP Server

NoSQL document database

databasenosqldocument

About

## Couchbase MCP Server: Multi-Model NoSQL Database The **Couchbase MCP Server** integrates Couchbase into Google Antigravity, enabling multi-model database operations with SQL++, full-text search, and mobile sync directly from your development environment. ### Why Couchbase MCP? - **SQL++**: SQL for JSON with powerful querying - **Full-Text Search**: Built-in search with fuzzy matching - **Mobile Sync**: Sync Gateway for mobile apps - **Memory-First**: Sub-millisecond latency - **Scalable**: Linear scaling with auto-sharding ### Key Features #### 1. SQL++ Queries ```python # Query documents result = await mcp.query(""" SELECT META().id, name, email, orders FROM users WHERE status = $status AND ARRAY_COUNT(orders) > $min_orders ORDER BY created_at DESC LIMIT 50 """, params={"status": "active", "min_orders": 5}) for row in result["rows"]: print(f"User: {row['name']} - {len(row['orders'])} orders") ``` #### 2. Document Operations ```python # Insert document await mcp.upsert( bucket="users", key="user::123", document={ "type": "user", "name": "John Doe", "email": "john@example.com", "orders": [] } ) # Get document doc = await mcp.get(bucket="users", key="user::123") # Update with sub-document await mcp.mutate_in( bucket="users", key="user::123", specs=[ {"op": "upsert", "path": "last_login", "value": "2024-01-15"}, {"op": "array_append", "path": "orders", "value": "order::456"} ] ) ``` #### 3. Full-Text Search ```python # Search documents result = await mcp.search( index="products-index", query={ "query": "laptop gaming", "fields": ["name", "description"], "fuzziness": 1 }, highlight=True, limit=20 ) for hit in result["hits"]: print(f"Product: {hit['fields']['name']} - Score: {hit['score']}") ``` #### 4. Bucket Operations ```python # List buckets buckets = await mcp.list_buckets() for bucket in buckets: print(f"Bucket: {bucket['name']} - {bucket['itemCount']} docs") # Get bucket stats stats = await mcp.get_bucket_stats(bucket="users") print(f"RAM used: {stats['ram_used']}") print(f"Disk used: {stats['disk_used']}") ``` ### Configuration ```json { "mcpServers": { "couchbase": { "command": "npx", "args": ["-y", "@anthropic/mcp-couchbase"], "env": { "COUCHBASE_URL": "couchbase://localhost", "COUCHBASE_USERNAME": "Administrator", "COUCHBASE_PASSWORD": "your-password", "COUCHBASE_BUCKET": "default" } } } } ``` ### Use Cases **User Profiles**: Store and query complex user profiles. **Product Catalog**: Full-text search across product data. **Session Store**: Low-latency session management. **Mobile Apps**: Sync data with mobile applications. The Couchbase MCP enables multi-model NoSQL operations within your development environment.

Installation

Configuration
{
  "mcpServers": {
    "couchbase": {
      "mcpServers": {
        "couchbase": {
          "env": {
            "CB_URL": "couchbase://localhost",
            "CB_PASSWORD": "password",
            "CB_USERNAME": "admin"
          },
          "args": [
            "-y",
            "couchbase-mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Set up Couchbase server
  2. 2Create bucket and credentials
  3. 3Configure connection details

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