analyze_lease
Analyze commercial lease terms to compare with market rates and receive actionable recommendations for negotiation.
Instructions
Analyze commercial lease terms and market comparison.
Args: lease_terms: Lease details including rent, term, location, size
Returns: Lease analysis with market comparison and recommendations.
Price: $3.00
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| lease_terms | Yes |
Implementation Reference
- coinrailz_mcp/__init__.py:710-724 (handler)The 'analyze_lease' tool is implemented as an asynchronous function decorated with @mcp.tool(). It takes 'lease_terms' as input, calls the 'lease-analysis' service via 'call_coinrailz_service', and returns the formatted JSON result.
@mcp.tool() async def analyze_lease(lease_terms: dict) -> str: """ Analyze commercial lease terms and market comparison. Args: lease_terms: Lease details including rent, term, location, size Returns: Lease analysis with market comparison and recommendations. Price: $3.00 """ result = await call_coinrailz_service("lease-analysis", lease_terms) return json.dumps(result, indent=2)