Skip to main content
Glama
tdnupe3

Coin Railz MCP Server

by tdnupe3

run_compliance_check

Perform AML, KYC, sanctions, and PEP compliance checks on blockchain entities to verify regulatory status and identify required actions.

Instructions

Run AML/KYC compliance checks.

Args: entity_id: Identifier for the entity (wallet address, etc.) check_type: Type of check. Options: aml, kyc, sanctions, pep

Returns: Compliance status, flags, and required actions.

Price: $1.00

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
entity_idYes
check_typeNoaml

Implementation Reference

  • The `run_compliance_check` tool implementation. It uses `call_coinrailz_service` to interact with the backend compliance-check endpoint.
    async def run_compliance_check(entity_id: str, check_type: str = "aml") -> str:
        """
        Run AML/KYC compliance checks.
        
        Args:
            entity_id: Identifier for the entity (wallet address, etc.)
            check_type: Type of check. Options: aml, kyc, sanctions, pep
        
        Returns:
            Compliance status, flags, and required actions.
        
        Price: $1.00
        """
        payload = {"entityId": entity_id, "checkType": check_type}
        result = await call_coinrailz_service("compliance-check", 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