format_currency

Pack: currencyformat · Endpoint: https://gateway.pipeworx.io/currencyformat/mcp

Format a number as localized currency (keyless, offline). E.g. amount 1234.5, currency “EUR”, locale “de-DE” -> “1.234,50 €”. currency is an ISO 4217 code.

Parameters

NameTypeRequiredDescription
amountnumberyesThe monetary amount.
currencystringyesISO 4217 code, e.g. “USD”, “EUR”, “JPY”.
localestringnoBCP-47 locale (default “en-US”), e.g. “de-DE”, “ja-JP”.

Example call

curl -X POST https://gateway.pipeworx.io/currencyformat/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"format_currency","arguments":{}}}'

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "currencyformat": {
      "url": "https://gateway.pipeworx.io/currencyformat/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 2, 2026