Behavry Integration — Google Antigravity
Google Antigravity supports MCP servers natively via ~/.config/antigravity/mcp.json. Behavry connects as a Streamable HTTP MCP server.
Prerequisites
- Behavry stack running (
make devordocker compose up) - Google Antigravity installed
- Python 3.11+
Config File Location
~/.config/antigravity/mcp.json
Quick Setup
make setup
This detects Antigravity, provisions an antigravity-local agent, and merges the MCP server config into ~/.config/antigravity/mcp.json.
Manual Configuration
Add to ~/.config/antigravity/mcp.json:
{
"mcpServers": {
"behavry": {
"transport": "streamable-http",
"url": "http://localhost:8000/mcp/v1/",
"headers": {
"Authorization": "Bearer <behavry-jwt>"
}
}
}
}
Activate
- Open Antigravity → Settings → Extensions → MCP Servers
- The Behavry server should appear with a connected status
- If not visible, restart Antigravity
Verify
- Invoke a tool in Antigravity (e.g., "List files in the current directory")
- Check http://localhost:5173 → Live Activity for the event
Token Refresh
make tokens
Antigravity picks up the new token on the next MCP request without requiring a restart.