Skip to main content
Glama
tdnupe3

Coin Railz MCP Server

by tdnupe3

get_wallet_risk_score

Analyze wallet addresses to assess risk levels, identify transaction patterns, and receive security recommendations for blockchain security evaluation.

Instructions

Get risk analysis and security scoring for any wallet address.

Args: wallet_address: The wallet address to analyze (0x...) chain: Primary chain for analysis. Options: ethereum, base, polygon

Returns: Risk score, transaction patterns, and security recommendations.

Price: $0.50

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
wallet_addressYes
chainNoethereum

Implementation Reference

  • The get_wallet_risk_score tool handler function in coinrailz_mcp/__init__.py. It is decorated with @mcp.tool(), accepts a wallet address and chain, calls the coinrailz service, and returns a JSON string representation of the risk score.
    @mcp.tool()
    async def get_wallet_risk_score(wallet_address: str, chain: str = "ethereum") -> str:
        """
        Get risk analysis and security scoring for any wallet address.
        
        Args:
            wallet_address: The wallet address to analyze (0x...)
            chain: Primary chain for analysis. Options: ethereum, base, polygon
        
        Returns:
            Risk score, transaction patterns, and security recommendations.
        
        Price: $0.50
        """
        payload = {"walletAddress": wallet_address, "chain": chain}
        result = await call_coinrailz_service("wallet-risk", 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