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.
Ensure you have Node.js installed, then run:
npm installCompile the TypeScript code to JavaScript:
npm run buildAdd 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"
}
}
}
}