WEPPY

Antigravity / Antigravity IDE Setup

How to use the WEPPY MCP Server from WEPPY Roblox AI Toolkit with Antigravity / Antigravity IDE.

How to use the WEPPY MCP Server from WEPPY Roblox AI Toolkit with Google Antigravity and Antigravity IDE.

Antigravity is Google’s agent-based development platform where AI agents autonomously perform complex tasks spanning code editing, the terminal, and the browser.

Use the one-line installer from the WEPPY install page first. Installing WEPPY AI Agent Plugin requires Antigravity CLI and its agy plugin command. If the CLI is unavailable, the installer keeps Antigravity connected through the shared direct WEPPY MCP Server configuration and links to the official CLI installation guide.

The browser installer configures the WEPPY MCP Server connection. It cannot run agy plugin or confirm that WEPPY AI Agent Plugin was installed.

Prerequisites

  1. Antigravity / Antigravity IDE installed (see the official docs for supported OS and requirements)
  2. Node.js (v18.0.0 or higher, with npx available)
  3. WEPPY Roblox Studio Plugin installation complete

Manual MCP Fallback

In Antigravity, MCP servers are managed from the Agent pane. The canonical global fallback is ~/.gemini/config/mcp_config.json; a workspace-only fallback uses .agents/mcp_config.json.

Manual Registration via Raw Config

  1. In the Agent pane, click MCP ServersManage MCP ServersView raw config

Opening the MCP Servers menu

  1. Add/merge the following into the displayed JSON config:
{
  "mcpServers": {
    "weppy-roblox-mcp": {
      "command": "npx",
      "args": ["-y", "@weppy/roblox-mcp@latest"]
    }
  }
}

Editing raw config

  1. Save and Refresh (or restart/reload as indicated by the UI)

The actual path and filename of the config file may vary by OS and Antigravity version — always modify the location shown in View raw config.

Optional: Adjust Port/Log via Environment Variables

Keeping the default (HTTP 127.0.0.1:3002) is recommended. If needed, you can set environment variables like this:

{
  "mcpServers": {
    "weppy-roblox-mcp": {
      "command": "npx",
      "args": ["-y", "@weppy/roblox-mcp@latest"],
      "env": {
        "HTTP_HOST": "127.0.0.1",
        "HTTP_PORT": "3002",
        "LOG_LEVEL": "INFO"
      }
    }
  }
}

Connection Test

  1. Launch Roblox Studio → Plugins tab → WEPPYConnect
  2. Enter the following in Antigravity:
    Tell me what is currently selected in Roblox Studio

Troubleshooting

Server Won’t Start

Run the MCP server directly to see the error:

npx -y @weppy/roblox-mcp@latest

Connection Fails

  • Confirm the WEPPY Roblox Studio Plugin shows Connected status
  • Check that port 3002 is not blocked by a firewall
  • Check server status via MCP Servers in the Agent pane
  • (Advanced) If you changed HTTP_PORT, make sure the WEPPY Roblox Studio Plugin and bridge settings also use the same port.