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
Ansible
terminal

Ansible MCP Server

MCP server for Ansible automation

ansibleautomationconfigurationdevops

About

## Ansible MCP Server: Infrastructure Automation The **Ansible MCP Server** integrates Red Hat Ansible automation into Google Antigravity, enabling developers to run playbooks, manage inventories, and automate infrastructure configuration. ### Why Ansible MCP? - **Agentless** - No agents required on managed nodes - **Playbook execution** - Run Ansible playbooks - **Inventory management** - Dynamic inventory support - **Role management** - Use Ansible Galaxy roles - **Vault integration** - Secure secrets management ### Key Features #### 1. Playbook Execution ```python # Run playbook result = await mcp.call("ansible", "run_playbook", { "playbook": "site.yml", "inventory": "production", "extra_vars": { "app_version": "2.0.0" } }) print(f"Status: {result[\"status\"]}") print(f"Changed: {result[\"stats\"][\"changed\"]}") ``` #### 2. Ad-hoc Commands ```python # Run ad-hoc command output = await mcp.call("ansible", "run_command", { "pattern": "webservers", "module": "shell", "args": "uptime" }) for host, result in output.items(): print(f"{host}: {result[\"stdout\"]}") # Ping all hosts ping = await mcp.call("ansible", "ping", { "pattern": "all" }) ``` #### 3. Inventory Management ```python # List inventory inventory = await mcp.call("ansible", "list_inventory", { "inventory": "production" }) for group, hosts in inventory["groups"].items(): print(f"{group}: {hosts}") # Get host variables hostvars = await mcp.call("ansible", "get_hostvars", { "inventory": "production", "host": "web01" }) ``` #### 4. Role Management ```python # Install role from Galaxy await mcp.call("ansible", "install_role", { "name": "geerlingguy.docker", "version": "6.0.0" }) # List installed roles roles = await mcp.call("ansible", "list_roles", {}) for role in roles: print(f"{role[\"name\"]}: {role[\"version\"]}") ``` ### Configuration ```json { "mcpServers": { "ansible": { "command": "npx", "args": ["-y", "@anthropic/mcp-ansible"], "env": { "ANSIBLE_CONFIG": "/path/to/ansible.cfg", "ANSIBLE_VAULT_PASSWORD_FILE": "/path/to/vault_pass" } } } } ``` ### Use Cases **Server Configuration**: Automate server setup. **App Deployment**: Deploy applications. **Infrastructure as Code**: Version-controlled infra. **Compliance**: Enforce configuration standards. The Ansible MCP Server enables infrastructure automation.

Installation

Configuration
{
  "mcpServers": {
    "ansible": {
      "mcpServers": {
        "ansible": {
          "args": [
            "mcp-sysoperator"
          ],
          "command": "uvx"
        }
      }
    }
  }
}

How to Use

  1. 11. Execute Ansible playbooks
  2. 22. Manage cloud resources
  3. 33. Includes LocalStack support for testing

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