ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

pipeworx-crypto

Cryptocurrency prices, market cap rankings, and fiat currency conversion via CoinGecko

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/brucegutman/pipeworx-crypto
Or

Crypto & Currency

Real-time cryptocurrency prices from CoinGecko plus fiat currency conversion. Check the price of Bitcoin, get the top 100 coins by market cap, or convert between currencies like USD, EUR, and GBP.

Tools

ToolDescription
get_crypto_priceCurrent price for a specific cryptocurrency by CoinGecko ID (e.g., "bitcoin", "ethereum", "solana")
get_crypto_marketTop cryptocurrencies ranked by market cap with prices and 24h changes
get_exchange_rateFiat-to-fiat exchange rate conversion (e.g., USD to EUR)

Scenarios

  • "What's the current price of Ethereum?" — use get_crypto_price with id "ethereum"
  • Building a portfolio tracker that needs live prices
  • Converting currencies for international pricing calculations
  • Displaying a market overview with top gainers and losers

Example: Bitcoin price

curl -s -X POST https://gateway.pipeworx.io/crypto/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_crypto_price","arguments":{"id":"bitcoin"}}}'
{
  "name": "Bitcoin",
  "symbol": "btc",
  "price_usd": 67234.12,
  "market_cap": 1320000000000,
  "volume_24h": 28500000000,
  "change_24h": 2.34
}

MCP config

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

Metadata

Stars4190
Views0
Updated2026-04-18
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-brucegutman-pipeworx-crypto": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.