loading…
Search for a command to run...
loading…
Enables AI agents to automate property maintenance workflows by managing tickets, sending WhatsApp notifications via Twilio, and triggering n8n automation webho
Enables AI agents to automate property maintenance workflows by managing tickets, sending WhatsApp notifications via Twilio, and triggering n8n automation webhooks. It allows users to query maintenance statuses, notify tenants, and escalate issues to vendors using natural language.
A production-ready Model Context Protocol (MCP) server that lets a Claude-powered agent orchestrate your full property maintenance workflow — built on top of an existing n8n + WhatsApp automation system.
┌─────────────────────────────────────────────────────────┐
│ Claude Agent / Desktop │
└────────────────────────┬────────────────────────────────┘
│ MCP (stdio / SSE)
┌────────────────────────▼────────────────────────────────┐
│ MCP PropTech Maintenance Server │
│ │
│ get_open_tickets update_maintenance_status │
│ notify_tenant escalate_to_vendor │
└──────┬──────────────────────────────────┬───────────────┘
│ │
┌──────▼──────┐ ┌────────▼──────────┐
│ Ticket DB │ │ Integrations │
│ (in-memory │ │ ┌─────────────┐ │
│ → Postgres │ │ │ n8n │ │
│ in prod) │ │ │ Webhooks │ │
└─────────────┘ │ ├─────────────┤ │
│ │ Twilio │ │
│ │ WhatsApp │ │
│ └─────────────┘ │
└───────────────────┘
| Tool | Description |
|---|---|
get_open_tickets |
Query tickets filtered by status, priority, category, property |
update_maintenance_status |
Drive tickets through the lifecycle with audit notes |
notify_tenant |
Send WhatsApp messages via 5 templates (acknowledgement, scheduled, update, resolved, delay) |
escalate_to_vendor |
Assign vendor, trigger n8n workflow, notify tenant in one call |
# 1. Install dependencies
npm install
# 2. Configure environment
cp .env.example .env
# Fill in ANTHROPIC_API_KEY, Twilio creds, n8n webhook URLs
# 3. Run the agent (single pass over the ticket queue)
npm run agent
# 4. Run as a daemon (checks every 5 minutes)
npm run agent:dev -- --daemon
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"proptech-maintenance": {
"command": "npx",
"args": ["tsx", "/absolute/path/to/MCPPropTech/src/mcp-server/index.ts"],
"env": {
"ANTHROPIC_API_KEY": "sk-ant-...",
"TWILIO_ACCOUNT_SID": "AC...",
"TWILIO_AUTH_TOKEN": "...",
"TWILIO_WHATSAPP_FROM": "whatsapp:+14155238886",
"N8N_WEBHOOK_MAINTENANCE": "https://your-n8n.com/webhook/maintenance",
"N8N_WEBHOOK_ESCALATE": "https://your-n8n.com/webhook/escalate"
}
}
}
}
Then from Claude Desktop you can say things like:
src/mcp-server/)The server runs over stdio (for Claude Desktop / agent SDK) and exposes the
four tools above. Swap StdioServerTransport for SSEServerTransport to serve
over HTTP for remote deployments.
src/data/)An in-memory store with 6 seed tickets covering every status and priority.
Replace TicketStore internals with a Postgres/Supabase/Airtable adapter for
production — the tool handlers only call the store interface.
src/integrations/n8n.ts)Fires webhooks to two n8n endpoints:
Your n8n workflows handle the rest: emailing vendors, updating spreadsheets, creating calendar invites, sending owner reports.
src/integrations/whatsapp.ts)Uses the Twilio API to send WhatsApp messages. Gracefully falls back to simulation mode (console logging) when credentials are not set — perfect for demos and local development.
src/agent/maintenance-agent.ts)A full agentic loop using @anthropic-ai/sdk that:
StdioClientTransportopen ──→ in_progress ──→ resolved ──→ closed
│ │ ↑
│ └──→ awaiting_tenant
│ │
└──→ escalated ←────┘
│
└──→ in_progress / resolved
| Variable | Required | Description |
|---|---|---|
ANTHROPIC_API_KEY |
Agent only | Claude API key |
TWILIO_ACCOUNT_SID |
Optional | Twilio account SID for WhatsApp |
TWILIO_AUTH_TOKEN |
Optional | Twilio auth token |
TWILIO_WHATSAPP_FROM |
Optional | Sender WhatsApp number |
N8N_WEBHOOK_MAINTENANCE |
Optional | n8n status-change webhook URL |
N8N_WEBHOOK_ESCALATE |
Optional | n8n vendor escalation webhook URL |
N8N_API_KEY |
Optional | n8n API key (if required by your instance) |
VENDOR_CONTACTS |
Optional | JSON map overriding default vendor directory |
AGENT_INTERVAL_MS |
Optional | Daemon poll interval (default: 300000 = 5 min) |
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"mcp-proptech": {
"command": "npx",
"args": []
}
}
}Web content fetching and conversion for efficient LLM usage.
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also