Skip to main content
Glama
tdnupe3

Coin Railz MCP Server

by tdnupe3

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
NameRequiredDescriptionDefault
addressNo
property_idNo

Implementation Reference

  • 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)
  • The get_property_valuation tool is registered using the @mcp.tool() decorator.
    @mcp.tool()

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/tdnupe3/mcp-server-coinrailz'

If you have feedback or need assistance with the MCP directory API, please join our Discord server