ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

pipeworx-exchangerate

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

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/b-gutman/pipeworx-exchangerate
Or

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"]
    }
  }
}

Metadata

Author@b-gutman
Stars4473
Views1
Updated2026-05-01
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-b-gutman-pipeworx-exchangerate": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.