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
Buildkite
layers

Buildkite MCP Server

CI/CD for any scale

ci-cdpipelinesscale

About

## Buildkite MCP Server: Scalable CI/CD Platform The **Buildkite MCP Server** integrates the hybrid CI/CD platform into Google Antigravity, enabling developers to manage pipelines, trigger builds, and monitor agents across self-hosted infrastructure with enterprise scalability. ### Why Buildkite MCP? - **Hybrid architecture** - Run builds on your own infrastructure with cloud orchestration - **Pipeline management** - Create and manage CI/CD pipelines programmatically - **Build control** - Trigger, monitor, and cancel builds from your IDE - **Agent management** - Monitor and control build agents across clusters - **Artifact handling** - Access build artifacts and test results ### Key Features #### 1. Pipeline Management ```python # Create new pipeline pipeline = await mcp.call("buildkite", "create_pipeline", { "organization": "my-org", "name": "api-service", "repository": "git@github.com:org/api-service.git", "steps": [ {"command": "npm install && npm test", "label": "Test"}, {"command": "npm run build", "label": "Build"}, {"wait": True}, {"command": "./deploy.sh", "label": "Deploy", "branches": "main"} ] }) print(f"Pipeline created: {pipeline[\"web_url\"]}") ``` #### 2. Build Triggering ```python # Trigger a new build build = await mcp.call("buildkite", "create_build", { "organization": "my-org", "pipeline": "api-service", "commit": "HEAD", "branch": "main", "message": "Deploy to production", "env": {"DEPLOY_ENV": "production"} }) # Monitor build progress status = await mcp.call("buildkite", "get_build", { "organization": "my-org", "pipeline": "api-service", "build_number": build["number"] }) print(f"State: {status[\"state\"]}") ``` #### 3. Agent Management ```python # List agents in cluster agents = await mcp.call("buildkite", "list_agents", { "organization": "my-org", "cluster": "production" }) for agent in agents: print(f"{agent[\"name\"]}: {agent[\"connection_state\"]}") print(f" Tags: {agent[\"meta_data\"]}") # Stop specific agent await mcp.call("buildkite", "stop_agent", { "organization": "my-org", "agent_id": "agent_xxx" }) ``` #### 4. Artifacts and Logs ```python # Get build artifacts artifacts = await mcp.call("buildkite", "list_artifacts", { "organization": "my-org", "pipeline": "api-service", "build_number": 123 }) for artifact in artifacts: print(f"{artifact[\"filename\"]}: {artifact[\"file_size\"]} bytes") ``` ### Configuration ```json { "mcpServers": { "buildkite": { "command": "npx", "args": ["-y", "@anthropic/mcp-buildkite"], "env": { "BUILDKITE_API_TOKEN": "bkua_xxx", "BUILDKITE_ORG_SLUG": "my-organization" } } } } ``` ### Use Cases **CI/CD Automation**: Trigger builds based on events or schedules programmatically. **Fleet Management**: Monitor and manage build agents across multiple clusters. **Pipeline Templates**: Create reusable pipeline configurations for teams. **Build Analytics**: Track build performance and identify bottlenecks. The Buildkite MCP Server enables enterprise CI/CD management from your IDE.

Installation

Configuration
{
  "mcpServers": {
    "buildkite": {
      "mcpServers": {
        "buildkite": {
          "env": {
            "BUILDKITE_TOKEN": "your-api-token"
          },
          "args": [
            "-y",
            "buildkite-mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Generate Buildkite API token
  2. 2Configure organization
  3. 3Manage pipelines

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