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

DuckDB MCP Server

MCP server for DuckDB analytics

duckdbanalyticsolapparquetembedded

About

## DuckDB MCP Server: Embedded Analytics The **DuckDB MCP Server** integrates DuckDB's embedded analytics database into Google Antigravity. This enables fast OLAP queries directly on local files and dataframes without a server. ### Why DuckDB MCP? DuckDB makes analytics simple: - **Embedded**: No server required - **Fast**: Columnar vectorized execution - **File Support**: Query CSV, Parquet, JSON directly - **Python Native**: Works with pandas, polars - **SQL Standard**: Full SQL support ### Key Features #### 1. Query Files Directly ```python import duckdb # Query Parquet files directly result = duckdb.sql(""" SELECT product_category, SUM(revenue) as total_revenue, COUNT(*) as orders FROM 'sales/*.parquet' GROUP BY product_category ORDER BY total_revenue DESC """).fetchall() ``` #### 2. Work with DataFrames ```python import pandas as pd df = pd.read_csv("data.csv") # Query pandas DataFrame with SQL result = duckdb.sql(""" SELECT customer_id, SUM(amount) as total FROM df WHERE date > '2024-01-01' GROUP BY customer_id """).df() ``` #### 3. Data Transformation ```python # Create table from query duckdb.sql(""" CREATE TABLE aggregated AS SELECT date_trunc('month', order_date) as month, COUNT(*) as orders, SUM(amount) as revenue FROM 'orders.parquet' GROUP BY month """) # Export to Parquet duckdb.sql("COPY aggregated TO 'monthly_stats.parquet' (FORMAT PARQUET)") ``` ### Configuration ```json { "mcpServers": { "duckdb": { "command": "npx", "args": ["-y", "@anthropic/mcp-duckdb"], "env": { "DUCKDB_DATABASE": ":memory:", "DUCKDB_READ_ONLY": "false" } } } } ``` ### Use Cases **Local Analytics**: Analyze files without a database. **Data Wrangling**: Transform data with SQL. **Notebook Analytics**: Fast queries in Jupyter. The DuckDB MCP Server brings embedded analytics to Antigravity.

Installation

Configuration
{
  "mcpServers": {
    "duckdb": {
      "mcpServers": {
        "duckdb": {
          "env": {
            "DUCKDB_PATH": ":memory:"
          },
          "args": [
            "-y",
            "duckdb-mcp"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 11. Use :memory: for in-memory or path to db file
  2. 22. Query Parquet, CSV, JSON files
  3. 33. High-performance OLAP queries

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