Skills pipeworx-exchangerate

Simple currency exchange rates — all rates for a base currency or a direct pair lookup via open.er-api.com

install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/b-gutman/pipeworx-exchangerate" ~/.claude/skills/openclaw-skills-pipeworx-exchangerate && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/b-gutman/pipeworx-exchangerate" ~/.openclaw/skills/openclaw-skills-pipeworx-exchangerate && rm -rf "$T"
manifest: skills/b-gutman/pipeworx-exchangerate/SKILL.md
source content

ExchangeRate API

A lightweight exchange rate service. Get all rates for a base currency in one call, or fetch a specific currency pair. Uses data from open.er-api.com with rates updated daily.

Tools

  • get_rates
    — All exchange rates relative to a base currency (e.g., "USD" returns rates for EUR, GBP, JPY, and 150+ others)
  • get_pair
    — Direct exchange rate between two specific currencies

Differs from the
exchange
pack

This pack is simpler — no historical rates or amount conversion, just current rates. Use this when you need a quick rate check or a full rate table. Use the

exchange
pack when you need conversion math or historical data.

Example: USD rates

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

MCP config

{
  "mcpServers": {
    "pipeworx-exchangerate": {
      "command": "npx",
      "args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/exchangerate/mcp"]
    }
  }
}