rental_add_property
Add new rental properties to Excel Finance MCP with property details including ID, name, address, type, unit count, year built, and amenities for investment tracking.
Instructions
Add a new rental property to the system
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | ||
amenities | No | ||
name | Yes | ||
propertyId | Yes | ||
propertyType | Yes | ||
totalUnits | Yes | ||
yearBuilt | No |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"type": "string"
},
"amenities": {
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"type": "string"
},
"propertyId": {
"type": "string"
},
"propertyType": {
"type": "string"
},
"totalUnits": {
"type": "number"
},
"yearBuilt": {
"type": "number"
}
},
"required": [
"propertyId",
"name",
"address",
"propertyType",
"totalUnits"
],
"type": "object"
}