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
Bugsnag
bug

Bugsnag MCP Server

Error monitoring platform

monitoringerrorsstability

About

## Bugsnag MCP Server: Error Monitoring The **Bugsnag MCP Server** integrates Bugsnag's error monitoring platform into Google Antigravity. This enables tracking application errors, crashes, and performance issues across web, mobile, and backend applications. ### Why Bugsnag MCP? Bugsnag catches errors before users complain: - **Real-Time Alerts**: Instant error notifications - **Smart Grouping**: Deduplicate similar errors - **Release Tracking**: Errors by version - **Breadcrumbs**: User actions before crash - **Multi-Platform**: Web, mobile, server ### Key Features #### 1. Report Errors ```python import bugsnag bugsnag.configure(api_key="your-api-key") try: process_order(order) except Exception as e: bugsnag.notify(e, metadata={ "order": {"id": order.id, "total": order.total}, "user": {"id": user.id} }) ``` #### 2. Query Errors ```python import requests headers = {"Authorization": f"token {api_token}"} # Get project errors response = requests.get( "https://api.bugsnag.com/projects/{project_id}/errors", headers=headers, params={"sort": "events", "direction": "desc", "per_page": 20} ) for error in response.json(): print(f"{error['error_class']}: {error['message']}") print(f"Events: {error['events']}, Users: {error['users']}") ``` #### 3. Manage Releases ```python # Create release release = requests.post( "https://build.bugsnag.com/", json={ "apiKey": api_key, "appVersion": "2.1.0", "releaseStage": "production", "sourceControl": { "revision": "abc123", "repository": "https://github.com/org/repo" } } ) ``` ### Configuration ```json { "mcpServers": { "bugsnag": { "command": "npx", "args": ["-y", "@anthropic/mcp-bugsnag"], "env": { "BUGSNAG_API_KEY": "your-api-key", "BUGSNAG_API_TOKEN": "your-token" } } } } ``` ### Use Cases **Error Tracking**: Monitor production errors. **Crash Reporting**: Mobile app crash analysis. **Release Quality**: Compare errors by version. The Bugsnag MCP Server brings error monitoring to Antigravity.

Installation

Configuration
{
  "mcpServers": {
    "bugsnag": {
      "mcpServers": {
        "bugsnag": {
          "env": {
            "BUGSNAG_API_KEY": "your-api-key"
          },
          "args": [
            "-y",
            "bugsnag-mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Create account at bugsnag.com
  2. 2Get API key from project settings
  3. 3Add to configuration

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