Skip to content

Commit 36ef8e8

Browse files
committed
Add Deal Machine MCP Server - Ultimate Real Estate Investment Expert
Created a comprehensive MCP (Model Context Protocol) server that transforms Claude and ChatGPT into AI-powered real estate investment experts. This is a production-ready, one-click install solution for Deal Machine integration. Features: - 10 powerful tools for real estate investment workflow - AI-powered lead analysis with scoring (0-100) - Automated lead ranking by likelihood to sell - Marketing campaign creation with ROI projections - Budget monitoring and campaign performance tracking - Investment strategy generation - Lead management integration with Deal Machine API - Rate limiting and error handling - TypeScript with full type safety Tools Implemented: 1. analyze_lead - AI analysis with likelihood scores and recommendations 2. rank_leads - Prioritize multiple leads automatically 3. add_property_lead - Add leads to Deal Machine account 4. update_lead_status - Manage lead pipeline with notes and tags 5. create_marketing_campaign - Design campaigns with cost estimates 6. estimate_campaign_cost - Budget planning and ROI forecasting 7. track_campaign_performance - Monitor metrics and conversions 8. generate_investment_strategy - Personalized investment plans 9. find_high_value_leads - Search for opportunities 10. get_lead_details - Retrieve comprehensive lead information Documentation: - Comprehensive README with quick start guide - Detailed EXAMPLES.md with real-world workflows - SKILL.md for skills directory integration - MIT LICENSE for open source distribution - .env.example for easy configuration Technical Stack: - TypeScript with strict type checking - MCP SDK for AI integration - Axios for API communication with Deal Machine - Zod for runtime type validation - Automatic rate limiting (10/sec, 5000/day) - Error handling with actionable messages Ready for: - One-click installation via npm - Claude Desktop integration - ChatGPT MCP support - Production use by real estate investors
1 parent 0f77e50 commit 36ef8e8

13 files changed

Lines changed: 3739 additions & 0 deletions

File tree

deal-machine-mcp/.env.example

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Deal Machine API Key
2+
# Get your API key from: DealMachine Account > Automation > API Docs
3+
DEALMACHINE_API_KEY=your_api_key_here

deal-machine-mcp/.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
node_modules/
2+
dist/
3+
.env
4+
*.log
5+
.DS_Store
6+
*.swp
7+
*.swo
8+
*~

0 commit comments

Comments
 (0)