We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/florinel-chis/shopify-liquid-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
currency.md•673 B
# Currency
Information regarding a currency, including its ISO code and symbol.
## Properties
**iso_code**
- Type: [string](https://shopify.dev/docs/api/liquid/basics#string)
- Description: "The ISO code of the currency."
**name**
- Type: [string](https://shopify.dev/docs/api/liquid/basics#string)
- Description: "The name of the currency."
**symbol**
- Type: [string](https://shopify.dev/docs/api/liquid/basics#string)
- Description: "The symbol of the currency."
## Example
```json
{
"iso_code": "CAD",
"name": "Canadian Dollar",
"symbol": "$"
}
```
---
**Source:** [Shopify Liquid API Documentation](https://shopify.dev/docs/api/liquid/objects/currency)