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
Tailscale MCP
🔗

Tailscale MCP MCP Server

Zero-config VPN built on WireGuard.

tailscalevpnwireguardnetworking

About

## Tailscale MCP Server: Zero-Config Secure Networking The **Tailscale MCP Server** integrates WireGuard-based mesh networking into Google Antigravity, enabling secure device connectivity, access control, and network management across distributed infrastructure. ### Why Tailscale MCP? - **Mesh networking** - Connect devices securely without port forwarding - **Zero-config VPN** - Simple setup with WireGuard encryption - **Access control** - Define who can access what with ACLs - **Exit nodes** - Route traffic through specific machines - **SSH integration** - Manage SSH access through Tailscale ### Key Features #### 1. Device Management ```python # List connected devices devices = await mcp.call("tailscale", "list_devices", { "include_offline": False }) for device in devices: print(f"{device[\"name\"]}: {device[\"addresses\"][0]}") print(f" OS: {device[\"os\"]}") print(f" Last Seen: {device[\"lastSeen\"]}") print(f" Tags: {device[\"tags\"]}") ``` #### 2. Access Control Lists ```python # Update ACL policy await mcp.call("tailscale", "update_acl", { "acl": { "groups": { "group:engineering": ["user1@example.com", "user2@example.com"] }, "acls": [ {"action": "accept", "src": ["group:engineering"], "dst": ["tag:servers:*"]}, {"action": "accept", "src": ["autogroup:admin"], "dst": ["*:*"]} ], "tagOwners": { "tag:servers": ["group:engineering"] } } }) ``` #### 3. SSH Access Management ```python # Configure SSH access await mcp.call("tailscale", "configure_ssh", { "rules": [ { "action": "check", "src": ["autogroup:members"], "dst": ["tag:production"], "users": ["autogroup:nonroot"] }, { "action": "accept", "src": ["group:admins"], "dst": ["tag:production"], "users": ["root", "autogroup:nonroot"] } ] }) # Get SSH sessions sessions = await mcp.call("tailscale", "list_ssh_sessions", { "active_only": True }) ``` #### 4. Exit Node Configuration ```python # Configure exit node await mcp.call("tailscale", "set_exit_node", { "device_id": "device_xxx", "advertise_exit_node": True }) # Route traffic through exit node await mcp.call("tailscale", "use_exit_node", { "exit_node": "exit-server.tail123.ts.net", "allow_lan_access": True }) ``` ### Configuration ```json { "mcpServers": { "tailscale": { "command": "npx", "args": ["-y", "@anthropic/mcp-tailscale"], "env": { "TAILSCALE_API_KEY": "tskey-api-xxx", "TAILSCALE_TAILNET": "your-tailnet.ts.net" } } } } ``` ### Use Cases **Remote Access**: Securely access servers without exposing ports publicly. **Team Networking**: Connect distributed teams to shared resources. **Development Environments**: Access development databases and services securely. **Site-to-Site**: Connect office networks and cloud VPCs seamlessly. The Tailscale MCP Server enables secure networking without complexity.

Installation

Configuration
{
  "mcpServers": {
    "tailscale": {}
  }
}

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