Number & Currency Format
live UtilityFinanceFormat a number as localized currency, grouped number, percentage, or compact (1.2M) via Intl. Formatting only (not FX conversion). Keyless, offline.
2 tools
0ms auth
free tier 50 calls/day
Tools
format_currency 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.
No parameters required.
Try it
Response
format_number Format a number with grouping, fixed decimals, as a percentage, or in compact notation (keyless, offline). style = "decimal" (default), "percent", or "compact".
No parameters required.
Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/currencyformat/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' Call a tool
bash
curl -X POST https://gateway.pipeworx.io/currencyformat/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"format_currency","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("format_currency", {}); ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("format a number as localized currency, grouped number, percentage, or compact (1");