Creating an app with Cursor
Create a new project using the Uno Platform Live Wizard, or
dotnet newcommand and change-o MyAppto be-n MyApp -o ..This will create the solution the folder you've already created in vscode. For example:
dotnet new unoapp --tfm net10.0 -n MyApp -o .In Cursor, open the project that was just created (e.g.,
MyApp).Open a terminal in the project folder and run the following command:
dnx -y uno.devserver loginThe Uno Studio app will allow you to sign in or create an account and get access the Uno App MCP.
Create a file named
.cursor/mcp.jsonand place the following content:{ "mcpServers": { "uno": { "url": "https://mcp.platform.uno/v1" }, "uno-app": { "command": "dnx", "args": ["-y","uno.devserver","--mcp-app"] } } }
Next Steps
You can start developing with Cursor.