MCP PropTech

MCP PropTech

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.

Category
访问服务器

README

MCP PropTech — Property Maintenance Automation

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   │  │
                                 │  └─────────────┘  │
                                 └───────────────────┘

Tools

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

Quick start

# 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

Claude Desktop integration

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:

  • "Show me all open emergency tickets"
  • "Escalate the burst pipe in unit 3B to a plumber"
  • "Send Marcus in 7A a WhatsApp update on his AC ticket"

Architecture

MCP Server (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.

Ticket Store (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.

n8n Integration (src/integrations/n8n.ts)

Fires webhooks to two n8n endpoints:

  • Maintenance webhook — on every status change and tenant notification
  • Escalation webhook — when a vendor is assigned

Your n8n workflows handle the rest: emailing vendors, updating spreadsheets, creating calendar invites, sending owner reports.

WhatsApp / Twilio (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.

Claude Agent (src/agent/maintenance-agent.ts)

A full agentic loop using @anthropic-ai/sdk that:

  1. Connects to the MCP server via StdioClientTransport
  2. Fetches available tools and converts them to the Anthropic tool format
  3. Runs an agentic loop until Claude stops calling tools
  4. Logs each tool call and result to the console

Lifecycle state machine

open ──→ in_progress ──→ resolved ──→ closed
  │         │                ↑
  │         └──→ awaiting_tenant
  │                   │
  └──→ escalated ←────┘
           │
           └──→ in_progress / resolved

Environment variables

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)

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选