get_supported_currencies
Retrieve available cryptocurrencies for creating payment orders in the Infini Payment system.
Instructions
Get list of all supported cryptocurrencies for creating orders.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.py:228-234 (handler)The handler function for the 'get_supported_currencies' tool. It uses the InfiniClient to make a GET request to the '/currency' endpoint and returns the result as a string.@mcp.tool() def get_supported_currencies() -> str: """ Get list of all supported cryptocurrencies for creating orders. """ result = client.request("GET", "/currency") return str(result)