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
Trigger.dev MCP
🎯

Trigger.dev MCP MCP Server

Background jobs for Next.js and serverless.

triggerdevjobsnextjsserverless

About

## Trigger.dev MCP Server: Background Jobs for Serverless The **Trigger.dev MCP Server** integrates the modern background jobs platform into Google Antigravity, enabling developers to run reliable background tasks in serverless environments with full observability. ### Why Trigger.dev MCP? - **Serverless native** - Designed for serverless deployments - **Full observability** - Detailed execution logs and traces - **Event triggers** - React to webhooks and schedules - **Long-running** - Support for long-running tasks - **Type-safe** - Full TypeScript support ### Key Features #### 1. Job Triggering ```python # Trigger a job run = await mcp.call("triggerdev", "trigger_job", { "job_id": "process-upload", "payload": { "file_url": "https://example.com/file.pdf", "user_id": "user_123" } }) print(f"Run ID: {run[\"id\"]}") # Wait for completion result = await mcp.call("triggerdev", "wait_for_run", { "run_id": run["id"], "timeout": 300 }) ``` #### 2. Run Management ```python # List runs runs = await mcp.call("triggerdev", "list_runs", { "job_id": "process-upload", "status": "COMPLETED", "limit": 10 }) for run in runs: print(f"{run[\"id\"]}: {run[\"status\"]} - {run[\"duration_ms\"]}ms") # Get run details details = await mcp.call("triggerdev", "get_run", { "run_id": run["id"] }) ``` #### 3. Event Streams ```python # List event streams events = await mcp.call("triggerdev", "list_events", { "job_id": "process-upload" }) # Replay event await mcp.call("triggerdev", "replay_event", { "event_id": "evt_xxx" }) ``` #### 4. Schedules ```python # Create scheduled job schedule = await mcp.call("triggerdev", "create_schedule", { "job_id": "daily-report", "cron": "0 9 * * *", "timezone": "America/New_York" }) ``` ### Configuration ```json { "mcpServers": { "triggerdev": { "command": "npx", "args": ["-y", "@anthropic/mcp-triggerdev"], "env": { "TRIGGER_API_KEY": "tr_xxx" } } } } ``` ### Use Cases **File Processing**: Handle uploads and transformations. **Email Sending**: Reliable email delivery with retries. **Scheduled Tasks**: Run periodic jobs reliably. **Webhook Processing**: Process incoming webhooks safely. The Trigger.dev MCP Server enables reliable background jobs.

Installation

Configuration
{
  "mcpServers": {
    "triggerdev": {}
  }
}

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