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
Inngest MCP
⚡

Inngest MCP MCP Server

Event-driven background job platform.

inngesteventsserverlessjobs

About

## Inngest MCP Server: Event-Driven Serverless Functions The **Inngest MCP Server** integrates the event-driven function platform into Google Antigravity, enabling developers to build reliable background jobs, scheduled tasks, and event-driven workflows. ### Why Inngest MCP? - **Event-driven** - React to events with durable functions - **Automatic retries** - Built-in retry and error handling - **Step functions** - Break work into reliable steps - **Scheduling** - Cron-based scheduled execution - **Local development** - Full local dev experience ### Key Features #### 1. Function Triggering ```python # Send event to trigger function result = await mcp.call("inngest", "send_event", { "name": "user/signup", "data": { "user_id": "user_123", "email": "user@example.com" } }) print(f"Event ID: {result[\"ids\"][0]}") # Send multiple events await mcp.call("inngest", "send_events", { "events": [ {"name": "order/placed", "data": {"order_id": "ord_1"}}, {"name": "order/placed", "data": {"order_id": "ord_2"}} ] }) ``` #### 2. Run Management ```python # List function runs runs = await mcp.call("inngest", "list_runs", { "function_id": "send-welcome-email", "status": "completed", "limit": 20 }) for run in runs: print(f"{run[\"id\"]}: {run[\"status\"]} - {run[\"ended_at\"]}") # Get run details run = await mcp.call("inngest", "get_run", { "run_id": "run_xxx" }) ``` #### 3. Function Management ```python # List functions functions = await mcp.call("inngest", "list_functions", { "app_id": "my-app" }) for fn in functions: print(f"{fn[\"name\"]}: {fn[\"triggers\"]}") # Pause function await mcp.call("inngest", "pause_function", { "function_id": "process-uploads" }) ``` #### 4. Event History ```python # Get event history events = await mcp.call("inngest", "list_events", { "name": "user/signup", "since": "2024-01-01T00:00:00Z" }) # Replay event await mcp.call("inngest", "replay_event", { "event_id": "evt_xxx" }) ``` ### Configuration ```json { "mcpServers": { "inngest": { "command": "npx", "args": ["-y", "@anthropic/mcp-inngest"], "env": { "INNGEST_SIGNING_KEY": "signkey-xxx", "INNGEST_EVENT_KEY": "eventkey-xxx" } } } } ``` ### Use Cases **Background Jobs**: Reliable background task execution. **Event Processing**: React to business events durably. **Scheduled Tasks**: Cron-based job scheduling. **Workflow Orchestration**: Multi-step workflows. The Inngest MCP Server enables event-driven serverless functions.

Installation

Configuration
{
  "mcpServers": {
    "inngest": {}
  }
}

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