Eine Immobilienagentur mit KI automatisieren bedeutet 2026 nicht mehr, einen Chatbot auf eine Website zu setzen. Sprachmodelle wie Claude 4.7, GPT-5 oder Gemini 3 können geschäftliche Tools direkt steuern — über klassische REST-APIs und über das Model Context Protocol (MCP), einen offenen Standard, den Anthropic im November 2024 veröffentlicht hat.
Schnelle Antwort
Für Visuals — meist die zeitintensivste Aufgabe — bietet Lift My Place eine REST-API unter /api/v1 und einen Remote-MCP-Server, die Sie an Claude Code, Codex, Ihr Backoffice oder einen n8n-Workflow anbinden können. Grenzkosten: 0,60 € pro Bild im Business-Plan.
Die Lift My Place REST-API
Versioniert unter /api/v1 mit vollständiger OpenAPI 3.1 Spezifikation. Authentifizierung per API-Key, granulare Scopes, Rate-Limits pro Schlüssel.
Beispiel — Erstellen einer Transformation in Node.js:
const response = await fetch("https://liftmyplace.com/api/v1/generations", {
method: "POST",
headers: {
"Authorization": `Bearer ${process.env.LMP_API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
image_url: "https://your-cdn.com/empty-photo.jpg",
style: "scandinavian",
room_type: "living_room",
}),
});Der Lift My Place MCP-Server
MCP ist ein offener Standard, den Anthropic im November 2024 veröffentlicht hat (Quelle: Anthropic — Introducing the Model Context Protocol). Setup in einer Zeile in Claude Code:
claude mcp add liftmyplace --url https://liftmyplace.com/mcp \
--header "Authorization: Bearer lmp_…"Claude plant, ruft die MCP-Tools auf und liefert die Renderings zurück. Kein Skript nötig.
Wann was wählen
- REST-API für deterministische Workflows (n8n, Cron, CRM-Integration)
- MCP für kreative Iterationen in natürlicher Sprache
Fünf automatisierbare Blöcke
1. Generierung der Listing-Visuals (höchster ROI)
2. Mehrsprachige Beschreibungen
3. Lead-Scoring
4. Inbox-Triage
5. Reporting
Quellen
- Anthropic — Introducing the Model Context Protocol, November 2024
- Model Context Protocol — Offizielle Spezifikation
- National Association of Realtors (NAR) — Profile of Home Staging, 2024
