-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcp-config.json
More file actions
83 lines (83 loc) · 2.39 KB
/
mcp-config.json
File metadata and controls
83 lines (83 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"mcpServers": {
"dealflow": {
"command": "node",
"args": ["server/mcp-server.js"],
"env": {
"GROQ_API_KEY": "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",
"HUGGINGFACE_API_KEY": "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"
},
"tools": [
{
"name": "analyze_property",
"description": "Analyze a real estate property investment with AI-powered insights",
"parameters": {
"type": "object",
"properties": {
"address": {
"type": "string",
"description": "Property address"
},
"city": {
"type": "string",
"description": "City name"
},
"state": {
"type": "string",
"description": "State code"
},
"zipCode": {
"type": "string",
"description": "ZIP code"
},
"purchasePrice": {
"type": "number",
"description": "Purchase price in USD"
},
"monthlyRent": {
"type": "number",
"description": "Expected monthly rent in USD"
}
},
"required": ["address", "purchasePrice", "monthlyRent"]
}
},
{
"name": "get_market_data",
"description": "Get real-time market data for a location",
"parameters": {
"type": "object",
"properties": {
"city": {
"type": "string",
"description": "City name"
},
"state": {
"type": "string",
"description": "State code"
}
},
"required": ["city", "state"]
}
},
{
"name": "compare_properties",
"description": "Compare multiple properties side by side",
"parameters": {
"type": "object",
"properties": {
"properties": {
"type": "array",
"items": {
"type": "object"
},
"description": "Array of property objects to compare"
}
},
"required": ["properties"]
}
}
]
}
}
}