diff --git a/plugins/lovable/.cursor-plugin/plugin.json b/plugins/lovable/.cursor-plugin/plugin.json index 95219aa..93fe000 100644 --- a/plugins/lovable/.cursor-plugin/plugin.json +++ b/plugins/lovable/.cursor-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "lovable", "displayName": "Lovable", - "version": "0.1.0", + "version": "0.1.1", "description": "Drive Lovable from Cursor: create projects, send work to the Lovable agent, manage Lovable Cloud databases, and deploy, all through the Lovable MCP server.", "author": { "name": "Lovable", diff --git a/plugins/lovable/CHANGELOG.md b/plugins/lovable/CHANGELOG.md index 4532e45..8b2cdf2 100644 --- a/plugins/lovable/CHANGELOG.md +++ b/plugins/lovable/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.1.1 + +- Removed the pre-registered OAuth client ID from the MCP connection. Lovable's OAuth server now supports dynamic client registration for Cursor, so the `auth` block is no longer needed and sign-in works like any other OAuth MCP server. + ## 0.1.0 First release. diff --git a/plugins/lovable/README.md b/plugins/lovable/README.md index 28b8845..4a44adb 100644 --- a/plugins/lovable/README.md +++ b/plugins/lovable/README.md @@ -26,10 +26,7 @@ If you only want the raw connection without the skills and commands, add the ser "mcpServers": { "lovable": { "type": "http", - "url": "https://mcp.lovable.dev", - "auth": { - "CLIENT_ID": "6d465f583e1e4ce5801b1616f735670c" - } + "url": "https://mcp.lovable.dev" } } } diff --git a/plugins/lovable/mcp.json b/plugins/lovable/mcp.json index ca7d2c4..4afca81 100644 --- a/plugins/lovable/mcp.json +++ b/plugins/lovable/mcp.json @@ -2,10 +2,7 @@ "mcpServers": { "lovable": { "type": "http", - "url": "https://mcp.lovable.dev/?src=cursor-plugin", - "auth": { - "CLIENT_ID": "6d465f583e1e4ce5801b1616f735670c" - } + "url": "https://mcp.lovable.dev/?src=cursor-plugin" } } }