streamable-httpApache-2.0updated 1mo ago
The official Model Context Protocol server for Lovable, an AI-powered full-stack app builder.
What can you do with Lovable?
Lovable MCP
The official Model Context Protocol server for Lovable, an AI-powered full-stack app builder.
Connect Claude, Cursor, Codex, and other MCP-compatible clients to Lovable so they can create, edit, deploy, and manage Lovable projects through natural language.
Endpoint
https://mcp.lovable.dev
Transport: Streamable HTTP.
Authentication
OAuth 2.1. MCP clients discover the authorization server via RFC 9728 metadata at https://mcp.lovable.dev/.well-known/oauth-protected-resource and obtain a bearer token automatically. The token is passed as Authorization: Bearer <token>.
Install
Claude, Claude Code, and ChatGPT need only the URL. Any other client must also pass Lovable's public OAuth client ID (6d465f583e1e4ce5801b1616f735670c), shown below.
Claude Code
claude mcp add --transport http lovable https://mcp.lovable.dev
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"lovable": {
"type": "http",
"url": "https://mcp.lovable.dev"
}
}
}
ChatGPT
Add the URL directly — no client ID needed:
https://mcp.lovable.dev
Cursor / Windsurf
Add to your client's MCP config (~/.cursor/mcp.json, or Windsurf's mcp_config.json):
{
"mcpServers": {
"lovable": {
"type": "http",
"url": "https://mcp.lovable.dev",
"auth": {
"CLIENT_ID": "6d465f583e1e4ce5801b1616f735670c"
}
}
}
}
VS Code
{
"servers": {
"lovable": {
"type": "http",
"url": "https://mcp.lovable.dev",
"auth": {
"CLIENT_ID": "6d465f583e1e4ce5801b1616f735670c"
}
}
}
}
Codex CLI
codex mcp add lovable --url https://mcp.lovable.dev
codex mcp login lovable
Other clients
Use the same type: http + url + auth.CLIENT_ID shape as the Cursor example above.
Tools
The server exposes tools across these areas:
- Projects & workspaces — list, create, deploy, remix, inspect; manage visibility
- Agent interaction — send messages to a project's AI agent and retrieve responses
- Code inspection — diffs, file tree, file contents, edit history
- Knowledge — read and write project / workspace AI instructions
- Cloud database — enable a Postgres database, check status, run SQL, get connection info
- Connectors & MCP servers — list, add, and remove external integrations (Linear, Notion, Slack, custom MCP, …)
- Templates & libraries — browse template and library projects
- Analytics — historical and real-time project traffic
- File uploads — generate upload URLs for attaching images
Heads up:
create_projectandsend_messageconsume Lovable build credits.deploy_projectpublishes a public URL.query_databaseruns SQL directly against your project's database.
See the Lovable MCP documentation for the full tool reference.
Common workflow
Build and deploy a new app:
1. list_workspaces() → workspace_id
2. create_project(workspace_id, ...) → project_id (uses credits)
3. send_message(project_id, "Add ...") → message_id (uses credits)
4. get_diff(project_id, message_id) → review changes
5. deploy_project(project_id) → live URL
Most tools need a workspace_id — call list_workspaces first. read_file needs a git ref; get latest_commit_sha from get_project.
Troubleshooting
| Symptom | Fix |
|---|---|
401 Unauthorized / expired token |
Re-run your client's login flow to refresh the OAuth token |
| OAuth window loops or never completes | Confirm the client passes the auth.CLIENT_ID shown above |
| "Transport not supported" | The client must support Streamable HTTP |
Tool fails on a missing workspace_id |
Call list_workspaces first and pass the returned ID |
Registry
This repository hosts the server.json entry for the MCP registry.
License
Install
Add Lovable to your client. Pick the one you use.
claude mcp add --transport http lovable https://mcp.lovable.devcodex mcp add lovable --url https://mcp.lovable.dev{
"mcpServers": {
"lovable": {
"url": "https://mcp.lovable.dev"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"lovable": {
"type": "http",
"url": "https://mcp.lovable.dev"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"lovable": {
"url": "https://mcp.lovable.dev"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"lovable": {
"serverUrl": "https://mcp.lovable.dev"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance22/25
- Trust16/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 50 days ago
- Has a release history
- Repository is not archived
- Licensed Apache-2.0
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.3Latest | Jun 12, 2026 |
| 0.1.2 | Jun 12, 2026 |
| 0.1.1 | May 28, 2026 |
| 0.1.0 | May 28, 2026 |