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
Podman MCP Server
package

Podman MCP Server MCP Server

MCP server for Podman and Docker container runtimes

podmandockercontainersoci

About

## Podman MCP Server: Rootless Container Management The **Podman MCP Server** integrates the daemonless container engine into Google Antigravity, enabling developers to manage containers, pods, and images without requiring root privileges or a running daemon. ### Why Podman MCP? - **Rootless containers** - Run containers without root privileges - **Daemonless** - No background daemon required - **Pod support** - Native pod concepts similar to Kubernetes - **Docker compatible** - Drop-in replacement for Docker commands - **Systemd integration** - Generate systemd unit files for containers ### Key Features #### 1. Container Management ```python # Run container rootlessly container = await mcp.call("podman", "run", { "image": "docker.io/library/nginx:latest", "name": "web-server", "ports": ["8080:80"], "detach": True, "userns": "keep-id" }) print(f"Container: {container[\"Id\"]}") # Execute command in container output = await mcp.call("podman", "exec", { "container": "web-server", "command": ["nginx", "-t"] }) ``` #### 2. Pod Management ```python # Create pod (similar to Kubernetes) pod = await mcp.call("podman", "pod_create", { "name": "web-pod", "ports": ["8080:80", "8443:443"] }) # Add containers to pod await mcp.call("podman", "run", { "image": "nginx:latest", "name": "nginx", "pod": "web-pod" }) await mcp.call("podman", "run", { "image": "redis:latest", "name": "cache", "pod": "web-pod" }) ``` #### 3. Image Management ```python # Build image image = await mcp.call("podman", "build", { "context": "/app", "tag": "myapp:latest", "file": "Containerfile" }) # Push to registry await mcp.call("podman", "push", { "image": "myapp:latest", "destination": "registry.example.com/myapp:latest" }) # List images images = await mcp.call("podman", "images", { "filter": "reference=myapp" }) ``` #### 4. Systemd Integration ```python # Generate systemd unit unit = await mcp.call("podman", "generate_systemd", { "container": "web-server", "restart_policy": "always", "time": 10 }) print(f"Unit file:\\n{unit}") # Install as user service await mcp.call("podman", "install_systemd_unit", { "container": "web-server", "user": True }) ``` ### Configuration ```json { "mcpServers": { "podman": { "command": "npx", "args": ["-y", "@anthropic/mcp-podman"], "env": { "CONTAINER_HOST": "unix:///run/user/1000/podman/podman.sock" } } } } ``` ### Use Cases **Rootless Development**: Run containers without elevated privileges. **Pod Workflows**: Work with pod concepts before deploying to Kubernetes. **Systemd Services**: Deploy containers as managed systemd services. **CI/CD Pipelines**: Build and push images in restricted environments. The Podman MCP Server enables secure, rootless container management.

Installation

Configuration
{
  "mcpServers": {
    "podman": {
      "mcpServers": {
        "podman": {
          "args": [
            "podman-mcp-server"
          ],
          "command": "uvx"
        }
      }
    }
  }
}

How to Use

  1. 1Install Podman or Docker
  2. 2Ensure container runtime is running
  3. 3Add server config to Claude Desktop

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