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

ClickHouse MCP Server

Column-oriented OLAP database

clickhouseanalyticsolapsqldata-warehouse

About

## ClickHouse MCP Server: Real-Time Analytics Database The **ClickHouse MCP Server** integrates ClickHouse's columnar analytics database into Google Antigravity. This enables lightning-fast analytical queries over billions of rows with real-time data ingestion. ### Why ClickHouse MCP? ClickHouse leads in OLAP performance: - **Blazing Fast**: Sub-second queries on billions of rows - **Columnar Storage**: Optimized for analytics - **Real-Time**: Ingest and query simultaneously - **Compression**: 10-50x data compression - **SQL Compatible**: Standard SQL interface ### Key Features #### 1. Query Data ```python from clickhouse_connect import get_client client = get_client(host="localhost", username="default") # Fast analytical query result = client.query(""" SELECT toDate(timestamp) as date, count() as events, uniq(user_id) as users FROM events WHERE timestamp > now() - INTERVAL 7 DAY GROUP BY date ORDER BY date """) for row in result.result_rows: print(f"Date: {row[0]}, Events: {row[1]}, Users: {row[2]}") ``` #### 2. Insert Data ```python # Batch insert client.insert("events", [ ["user-1", "page_view", "/home", datetime.now()], ["user-2", "click", "/pricing", datetime.now()] ], column_names=["user_id", "event_type", "page", "timestamp"]) ``` #### 3. Materialized Views ```python # Create real-time aggregation client.command(""" CREATE MATERIALIZED VIEW hourly_stats ENGINE = SummingMergeTree() ORDER BY (hour, page) AS SELECT toStartOfHour(timestamp) as hour, page, count() as views, uniq(user_id) as users FROM events GROUP BY hour, page """) ``` ### Configuration ```json { "mcpServers": { "clickhouse": { "command": "npx", "args": ["-y", "@anthropic/mcp-clickhouse"], "env": { "CLICKHOUSE_HOST": "localhost", "CLICKHOUSE_USER": "default", "CLICKHOUSE_PASSWORD": "password" } } } } ``` ### Use Cases **Real-Time Analytics**: Live dashboards and metrics. **Log Analytics**: Analyze billions of log entries. **Time Series**: High-frequency IoT and monitoring data. The ClickHouse MCP Server brings real-time analytics to Antigravity.

Installation

Configuration
{
  "mcpServers": {
    "clickhouse": {
      "mcpServers": {
        "clickhouse": {
          "env": {
            "CLICKHOUSE_HOST": "localhost",
            "CLICKHOUSE_USER": "default",
            "CLICKHOUSE_PASSWORD": "password"
          },
          "args": [
            "-y",
            "@clickhouse/mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 11. Set ClickHouse connection details
  2. 22. Read-only queries for safety
  3. 33. Also available as ClickHouse Cloud remote MCP

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