Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 861 Bytes

File metadata and controls

36 lines (30 loc) · 861 Bytes

Antigravity-DebugMCP-Bridge

A bridge that connects Antigravity to the DebugMCP server to resolve compatibility issues between Antigravity and the current version of the DebugMCP extension's SSE implementation.

Setup

1. Install Dependencies

Ensure you have Node.js installed, then run:

npm install

2. Build the Bridge

Compile the TypeScript code to JavaScript:

npm run build

3. Configure Antigravity

Add the following to your Antigravity MCP configuration. Replace /absolute/path/to/project with the actual path to this directory on your machine.

{
  "mcpServers": {
    "debugmcp": {
      "command": "node",
      "args": [
        "/absolute/path/to/project/dist/bridge.js"
      ],
      "env": {
        "DEBUGMCP_PORT": "3001"
      }
    }
  }
}