--- uid: Uno.GetStarted.AI.GoogleAntigravity --- # Get Started with Google Antigravity This guide walks you through configuring the Uno Platform MCPs for Google Antigravity so you can use the agent with the Uno Dev Server. > [!WARNING] > Antigravity is currently a preview feature. > > If changes (SDKs, templates, tools, MCPs) are not detected immediately, restarting the Antigravity agent, reopening the workspace, or re-running setup usually resolves the issue. ## Check your environment [!include[getting-help](includes/use-uno-check-inline-noheader.md)] ## Setting up Uno Platform MCPs > [!NOTE] > The Uno Platform extension is not functional in Antigravity at this time. 1. Install [Google Antigravity](https://antigravity.google/) by following Google's official instructions for your operating system. 1. Configure [Antigravity MCPs](https://antigravity.google/docs/mcp): You can either use `dotnet dnx -y uno.devserver mcp install gemini-antigravity` to write the supported registration for you, or edit the raw config manually. See the [Dev Server reference](xref:Uno.DevServer) for the full CLI surface. Example using the Dev Server CLI: ```bash dotnet dnx -y uno.devserver mcp install gemini-antigravity ``` 1. Open the MCP store via the "..." dropdown at the top of the editor's agent panel. 1. Click on "Manage MCP Servers" 1. Click on "View raw config" 1. Modify the mcp_config.json with your custom MCP server configuration: ```json { "mcpServers": { "uno": { "url": "https://mcp.platform.uno/v1" }, "uno-app": { "command": "dotnet", "args": [ "dnx", "-y", "uno.devserver", "--mcp-app", "--mcp-wait-tools-list" ] } } } ``` > [!NOTE] > The DevServer auto-detects when the client does not advertise the MCP roots capability and exposes the `uno_app_initialize` tool automatically. `--force-roots-fallback` is a legacy override and is rarely needed. You can verify the registration state at any time: ```bash dotnet dnx -y uno.devserver mcp status gemini-antigravity ``` To remove the Uno MCP entries from Antigravity's config: ```bash dotnet dnx -y uno.devserver mcp uninstall gemini-antigravity ``` See [The Uno Platform MCPs](xref:Uno.Features.Uno.MCPs) for additional details about MCP registration and diagnostics. ## Next Steps You are now ready to [create your first app with Google Antigravity](xref:Uno.GettingStarted.CreateAnApp.AI.GoogleAntigravity).