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 FazierFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowAI ToolzShinyLaunchMillion Dot HomepageSolver ToolsFeatured on FazierFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowAI ToolzShinyLaunchMillion Dot HomepageSolver Tools

© 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
Dagster MCP
📊

Dagster MCP MCP Server

Data orchestration platform for ML and analytics.

dagsterorchestrationmldata

About

## Dagster MCP Server: Data Orchestration The **Dagster MCP Server** integrates Dagster's modern data orchestration platform into Google Antigravity. This enables building observable, testable data pipelines with a focus on developer experience and software engineering best practices. ### Why Dagster MCP? Dagster modernizes data engineering: - **Software-Defined Assets**: Data as first-class citizens - **Type System**: Data validation built-in - **Observability**: Rich lineage and metadata - **Testing**: Unit test your pipelines - **Cloud Native**: Dagster Cloud or self-hosted ### Key Features #### 1. Launch Runs ```python import requests headers = {"Dagster-Cloud-Api-Token": api_token} # Launch job run response = requests.post( "https://your-org.dagster.cloud/graphql", headers=headers, json={ "query": """ mutation LaunchRun($selector: JobSelector!) { launchRun(executionParams: {selector: $selector}) { run { runId status } } } """, "variables": {"selector": {"jobName": "daily_etl"}} } ) ``` #### 2. Query Assets ```python # Get asset materializations response = requests.post( "https://your-org.dagster.cloud/graphql", headers=headers, json={ "query": """ query AssetMaterializations($assetKey: AssetKeyInput!) { assetOrError(assetKey: $assetKey) { ... on Asset { assetMaterializations(limit: 10) { timestamp runId } } } } """, "variables": {"assetKey": {"path": ["users_table"]}} } ) ``` #### 3. Monitor Runs ```python # Get run status response = requests.post( "https://your-org.dagster.cloud/graphql", headers=headers, json={ "query": """ query RunStatus($runId: ID!) { runOrError(runId: $runId) { ... on Run { status stats { stepsSucceeded stepsFailed } } } } """, "variables": {"runId": run_id} } ) ``` ### Configuration ```json { "mcpServers": { "dagster": { "command": "npx", "args": ["-y", "@anthropic/mcp-dagster"], "env": { "DAGSTER_CLOUD_URL": "https://your-org.dagster.cloud", "DAGSTER_CLOUD_API_TOKEN": "your-token" } } } } ``` ### Use Cases **Data Pipelines**: Modern ETL with observability. **Asset Management**: Track data dependencies. **Data Quality**: Built-in validation and testing. The Dagster MCP Server brings modern data orchestration to Antigravity.

Installation

Configuration
{
  "mcpServers": {
    "dagster": {}
  }
}

How to Use

    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