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
| Name | Required | Description | Default |
|---|---|---|---|
| entity_id | Yes | ||
| entity_type | No | individual |
Implementation Reference
- coinrailz_mcp/__init__.py:748-764 (handler)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)