Een makelaarskantoor automatiseren met AI is in 2026 niet langer simpelweg een chatbot aan een site koppelen. Taalmodellen (Claude 4.7, GPT-5, Gemini 3) kunnen nu directe businesstools aansturen via klassieke REST API's en via het Model Context Protocol (MCP), een open standaard die Anthropic in november 2024 publiceerde.
Snel antwoord
Voor visuals — meestal de tijdrovendste taak — biedt Lift My Place een REST API onder /api/v1 en een remote MCP-server die je kunt aansluiten op Claude Code, Codex, je back-office of een n8n-workflow. Marginale kosten: 0,60 € per beeld op het Business-plan.
De Lift My Place REST API
Versioned onder /api/v1 met volledige OpenAPI 3.1-specificatie. Authenticatie via persoonlijke API-sleutel, granulaire scopes en rate limits per sleutel.
Voorbeeld — een transformatie aanmaken vanuit 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://jouw-cdn.com/lege-foto.jpg",
style: "scandinavian",
room_type: "living_room",
}),
});De Lift My Place MCP-server
MCP is een open standaard die Anthropic in november 2024 publiceerde (bron: Anthropic — Introducing the Model Context Protocol). Setup in één regel vanuit Claude Code:
claude mcp add liftmyplace --url https://liftmyplace.com/mcp \
--header "Authorization: Bearer lmp_…"Claude plant, roept de MCP-tools aan en levert de renders terug. Geen script nodig.
Wanneer welke optie
- REST API voor deterministische workflows (n8n, cron, CRM-integratie)
- MCP voor creatieve iteraties in natuurlijke taal
Vijf automatiseerbare blokken
1. Visuals genereren (hoogste ROI)
2. Meertalige beschrijvingen
3. Lead-scoring
4. Inbox-triage
5. Rapportage
Bronnen
- Anthropic — Introducing the Model Context Protocol, november 2024
- Model Context Protocol — Officiële specificatie
- National Association of Realtors (NAR) — Profile of Home Staging, 2024
