WEPPY

Antigravity Setup

How to use Roblox MCP with Antigravity.

How to use Roblox MCP with Google Antigravity.

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

Prerequisites

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

Registering the MCP Server

In Antigravity, MCP servers are managed from the Agent pane.

  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"]
    }
  }
}

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"],
      "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

Connection Fails

  • Confirm the 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 Roblox Studio plugin and bridge settings also use the same port.