Skip to main content
Glama
tdnupe3

Coin Railz MCP Server

by tdnupe3

get_credit_risk_score

Assess credit risk for blockchain entities by analyzing wallet addresses or business IDs to generate credit scores, identify risk factors, and provide lending recommendations.

Instructions

Get credit risk assessment for individuals or businesses.

Args: entity_id: Identifier for the entity (wallet, business ID, etc.) entity_type: Type of entity. Options: individual, business, dao

Returns: Credit score, risk factors, and lending recommendations.

Price: $2.00

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
entity_idYes
entity_typeNoindividual

Implementation Reference

  • Implementation of the get_credit_risk_score tool handler. It registers the tool with @mcp.tool() and uses call_coinrailz_service to fetch data.
    @mcp.tool()
    async def get_credit_risk_score(entity_id: str, entity_type: str = "individual") -> str:
        """
        Get credit risk assessment for individuals or businesses.
        
        Args:
            entity_id: Identifier for the entity (wallet, business ID, etc.)
            entity_type: Type of entity. Options: individual, business, dao
        
        Returns:
            Credit score, risk factors, and lending recommendations.
        
        Price: $2.00
        """
        payload = {"entityId": entity_id, "entityType": entity_type}
        result = await call_coinrailz_service("credit-risk-score", payload)
        return json.dumps(result, indent=2)

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