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
Travis CI
terminal

Travis CI MCP Server

Hosted CI service

ci-cdtestinghosted

About

## Travis CI MCP Server: Continuous Integration Automation The **Travis CI MCP Server** integrates the popular CI platform into Google Antigravity, enabling developers to manage builds, configure pipelines, and monitor test results for open source and private projects. ### Why Travis CI MCP? - **Build management** - Trigger and monitor builds programmatically - **Configuration** - Manage .travis.yml settings through API - **Multi-language** - Support for dozens of programming languages - **Caching** - Control build caches for faster CI runs - **Deployment** - Configure deployments to various providers ### Key Features #### 1. Build Management ```python # Trigger a new build build = await mcp.call("travis", "trigger_build", { "repo": "owner/repository", "branch": "main", "message": "Manual trigger from Antigravity" }) print(f"Build started: {build[\"id\"]}") # Get build status status = await mcp.call("travis", "get_build", { "build_id": build["id"] }) print(f"State: {status[\"state\"]}, Duration: {status[\"duration\"]}s") ``` #### 2. Repository Configuration ```python # Get repository settings repo = await mcp.call("travis", "get_repo", { "repo": "owner/repository" }) print(f"Active: {repo[\"active\"]}") print(f"Last Build: {repo[\"last_build_state\"]}") # Update repository settings await mcp.call("travis", "update_repo_settings", { "repo": "owner/repository", "settings": { "build_pushes": True, "build_pull_requests": True } }) ``` #### 3. Environment Variables ```python # Set environment variables await mcp.call("travis", "set_env_var", { "repo": "owner/repository", "name": "DEPLOY_KEY", "value": "secret-value", "public": False }) # List environment variables env_vars = await mcp.call("travis", "list_env_vars", { "repo": "owner/repository" }) for var in env_vars: print(f"{var[\"name\"]}: [hidden]" if not var["public"] else f"{var[\"name\"]}: {var[\"value\"]}") ``` #### 4. Cache Management ```python # List build caches caches = await mcp.call("travis", "list_caches", { "repo": "owner/repository" }) for cache in caches: print(f"{cache[\"branch\"]}: {cache[\"size\"]} MB") # Clear caches await mcp.call("travis", "delete_caches", { "repo": "owner/repository", "branch": "main" }) ``` ### Configuration ```json { "mcpServers": { "travis": { "command": "npx", "args": ["-y", "@anthropic/mcp-travis"], "env": { "TRAVIS_API_TOKEN": "your-travis-token", "TRAVIS_API_URL": "https://api.travis-ci.com" } } } } ``` ### Use Cases **CI Automation**: Trigger builds based on external events or schedules. **Environment Management**: Securely manage build secrets and environment variables. **Build Optimization**: Manage caches to speed up CI runs. **Project Setup**: Configure new repositories for CI automatically. The Travis CI MCP Server streamlines continuous integration workflows.

Installation

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

How to Use

  1. 1Get Travis CI API token
  2. 2Configure repository
  3. 3Manage builds

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