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
Apache Cassandra
database

Apache Cassandra MCP Server

Wide-column distributed database

databasenosqldistributed

About

## Apache Cassandra MCP Server: Distributed NoSQL Database The **Apache Cassandra MCP Server** integrates Cassandra into Google Antigravity, enabling distributed database operations with high availability, linear scalability, and fault tolerance directly from your development environment. ### Why Cassandra MCP? - **Linear Scalability**: Add nodes for linear performance increase - **High Availability**: No single point of failure - **Geographic Distribution**: Multi-datacenter replication - **Write Performance**: Optimized for high write throughput - **Proven Scale**: Powers Netflix, Apple, Instagram ### Key Features #### 1. CQL Queries ```python # Execute CQL query result = await mcp.execute( query=""" SELECT user_id, email, created_at FROM users WHERE partition_key = ? LIMIT 100 """, parameters=["partition_value"] ) for row in result["rows"]: print(f"User: {row['email']}") ``` #### 2. Data Operations ```python # Insert data await mcp.execute( query=""" INSERT INTO events (event_id, user_id, event_type, data, timestamp) VALUES (?, ?, ?, ?, toTimestamp(now())) """, parameters=[uuid4(), user_id, "page_view", json.dumps(data)] ) # Batch insert await mcp.batch([ {"query": "INSERT INTO events ...", "parameters": [...]}, {"query": "INSERT INTO events ...", "parameters": [...]}, {"query": "INSERT INTO events ...", "parameters": [...]} ]) ``` #### 3. Schema Operations ```python # Create keyspace await mcp.execute(""" CREATE KEYSPACE IF NOT EXISTS myapp WITH replication = { 'class': 'NetworkTopologyStrategy', 'datacenter1': 3 } """) # Create table await mcp.execute(""" CREATE TABLE IF NOT EXISTS myapp.events ( partition_key text, event_time timestamp, event_id uuid, data text, PRIMARY KEY ((partition_key), event_time, event_id) ) WITH CLUSTERING ORDER BY (event_time DESC) """) ``` #### 4. Cluster Operations ```python # Get cluster info info = await mcp.get_cluster_info() print(f"Cluster: {info['cluster_name']}") print(f"Nodes: {len(info['nodes'])}") # Get keyspaces keyspaces = await mcp.get_keyspaces() for ks in keyspaces: print(f"Keyspace: {ks['name']} - RF: {ks['replication_factor']}") ``` ### Configuration ```json { "mcpServers": { "cassandra": { "command": "npx", "args": ["-y", "@anthropic/mcp-cassandra"], "env": { "CASSANDRA_HOSTS": "node1.example.com,node2.example.com", "CASSANDRA_KEYSPACE": "myapp", "CASSANDRA_USERNAME": "cassandra", "CASSANDRA_PASSWORD": "your-password" } } } } ``` ### Use Cases **Time-Series Data**: Store high-volume event and sensor data. **User Activity**: Track user actions across distributed systems. **IoT Data**: Collect and query IoT device telemetry. **Messaging**: Build scalable messaging and notification systems. The Cassandra MCP enables distributed database operations within your development environment.

Installation

Configuration
{
  "mcpServers": {
    "cassandra": {
      "mcpServers": {
        "cassandra": {
          "env": {
            "CASSANDRA_HOSTS": "localhost",
            "CASSANDRA_KEYSPACE": "your_keyspace"
          },
          "args": [
            "-y",
            "cassandra-mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Set up Cassandra cluster
  2. 2Create keyspace
  3. 3Configure connection hosts

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