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.
Check your environment
Open a command-line prompt, Windows Terminal if you have it installed, or else Command Prompt or Windows Powershell from the Start menu.
Setup uno.check by installing or updating the tool with:
dotnet tool update -g uno.checkRun the tool from the command prompt with the following command:
uno-checkYou can optionally add the
--target desktop --target web(orios,android,windows) parameters based on your intended development platforms.Follow the instructions indicated by the tool.
You can find additional information about uno-check here.
You can find additional information about uno-check here.
Setting up Uno Platform MCPs
Install Google Antigravity by following Google's official instructions for your operating system.
Configure Antigravity MCPs:
Open the MCP store via the "..." dropdown at the top of the editor's agent panel.
Click on "Manage MCP Servers"
Click on "View raw config"
Modify the mcp_config.json with your custom MCP server configuration:
{ "mcpServers": { "uno": { "url": "https://mcp.platform.uno/v1" }, "uno-app": { "command": "dotnet", "args": [ "dnx", "-y", "uno.devserver", "--mcp-app", "--force-roots-fallback" ] } } }
Note
--force-roots-fallbackexposes theuno_app_set_rootstool so Antigravity, which does not yet provide MCP roots, can initialize.
Next Steps
You are now ready to create your first app with Google Antigravity.