get_property_valuation
Estimate property value using AI analysis of comparable sales and market trends. Provide address or property ID for valuation.
Instructions
Get AI-powered property valuation estimate.
Args: address: Property street address property_id: Or property ID if known
Returns: Estimated value, comparable sales, and market trends.
Price: $5.00
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | No | ||
| property_id | No |
Implementation Reference
- coinrailz_mcp/__init__.py:689-708 (handler)The get_property_valuation function serves as the handler for the property valuation MCP tool, formatting the input and calling the underlying Coinrailz service.
async def get_property_valuation(address: str = None, property_id: str = None) -> str: """ Get AI-powered property valuation estimate. Args: address: Property street address property_id: Or property ID if known Returns: Estimated value, comparable sales, and market trends. Price: $5.00 """ payload = {} if address: payload["address"] = address if property_id: payload["propertyId"] = property_id result = await call_coinrailz_service("property-valuation", payload) return json.dumps(result, indent=2) - coinrailz_mcp/__init__.py:688-688 (registration)The get_property_valuation tool is registered using the @mcp.tool() decorator.
@mcp.tool()