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 FazierFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowAI ToolzShinyLaunchMillion Dot HomepageSolver ToolsFeatured on FazierFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowAI ToolzShinyLaunchMillion Dot HomepageSolver Tools

© 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
Teleport MCP
🌀

Teleport MCP MCP Server

Identity-aware access proxy for infrastructure.

teleportaccesssshkubernetes

About

## Teleport MCP Server: Secure Infrastructure Access The **Teleport MCP Server** integrates Teleport access plane into Google Antigravity, providing certificate-based authentication and audit logging for secure access to SSH servers, Kubernetes clusters, databases, and applications. ### Why Teleport MCP? - **Certificate-Based Auth**: Replace long-lived credentials with short-lived certificates - **Session Recording**: Record all sessions for compliance and security auditing - **Access Requests**: Implement just-in-time access with approval workflows - **SSO Integration**: Leverage existing identity providers for authentication - **Protocol Support**: Secure SSH, Kubernetes, database, and application access ### Key Features #### 1. SSH Access ```python # Connect to an SSH node session = await mcp.ssh_connect( node="web-server-01", login="ubuntu", cluster="production" ) # Execute commands result = await mcp.ssh_exec( session_id=session["id"], command="systemctl status nginx" ) print(result["stdout"]) # Close session await mcp.ssh_disconnect(session_id=session["id"]) ``` #### 2. Kubernetes Access ```python # Get kubeconfig for a cluster kubeconfig = await mcp.get_kubeconfig( cluster="prod-k8s", ttl="8h" ) # List available clusters clusters = await mcp.list_kube_clusters() for cluster in clusters: print(f"Cluster: {cluster['name']} ({cluster['labels']})") ``` #### 3. Database Access ```python # Connect to a database db_session = await mcp.db_connect( database="prod-postgres", db_user="app_readonly", db_name="myapp" ) # Get connection string print(f"Connect: psql {db_session['connection_string']}") ``` #### 4. Access Requests ```python # Request elevated access request = await mcp.create_access_request( roles=["db-admin"], reason="Emergency database maintenance", suggested_reviewers=["alice@company.com"] ) # Check request status status = await mcp.get_access_request(request_id=request["id"]) print(f"Request status: {status['state']}") # List pending requests pending = await mcp.list_access_requests(state="pending") ``` ### Configuration ```json { "mcpServers": { "teleport": { "command": "npx", "args": ["-y", "@anthropic/mcp-teleport"], "env": { "TELEPORT_PROXY": "teleport.yourcompany.com:443", "TELEPORT_AUTH_TOKEN": "your-auth-token", "TELEPORT_CLUSTER": "production" } } } } ``` ### Use Cases **Production Access**: Provide developers secure, audited access to production systems with session recording for compliance. **Database Queries**: Enable secure database access for debugging without sharing credentials or connection strings. **Incident Response**: Quickly grant emergency access to systems with approval workflows and automatic expiration. **Contractor Access**: Provide temporary, scoped access to contractors with full audit trails and automatic cleanup. The Teleport MCP enables secure, audited infrastructure access directly within your Google Antigravity development environment.

Installation

Configuration
{
  "mcpServers": {
    "teleport": {}
  }
}

How to Use

    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