← Back to Skills Marketplace
brucegutman

Pipeworx crypto

by Bruce Gutman · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
99
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install pipeworx-crypto
Description
Cryptocurrency prices, market cap rankings, and fiat currency conversion via CoinGecko
README (SKILL.md)

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

Tool Description
get_crypto_price Current price for a specific cryptocurrency by CoinGecko ID (e.g., "bitcoin", "ethereum", "solana")
get_crypto_market Top cryptocurrencies ranked by market cap with prices and 24h changes
get_exchange_rate Fiat-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"]
    }
  }
}
Usage Guidance
This skill is coherent and low-friction, but note it forwards requests to an external service (gateway.pipeworx.io). Do not send secrets or sensitive account data through it unless you trust that endpoint. The SKILL.md also shows an MCP config that uses `npx mcp-remote@latest` — if you enable that flow, npx will download and execute code from npm at runtime, which increases risk. If you need stronger privacy or control, prefer calling CoinGecko directly or review Pipeworx's documentation and privacy policy before use.
Capability Analysis
Type: OpenClaw Skill Name: pipeworx-crypto Version: 1.0.0 The skill provides cryptocurrency market data and fiat exchange rates by interfacing with a remote MCP server at gateway.pipeworx.io. It contains no local executable code, and the documentation (SKILL.md) describes standard tool usage and configuration for the mcp-remote utility without any signs of malicious intent or prompt injection.
Capability Tags
crypto
Capability Assessment
Purpose & Capability
Name/description match the behavior in SKILL.md. The only required binary is curl, which is appropriate for the provided curl examples and remote API usage. No unrelated credentials, binaries, or config paths are requested.
Instruction Scope
SKILL.md instructs the agent to call a remote endpoint (https://gateway.pipeworx.io/crypto/mcp) and provides example MCP configuration. That is coherent with a remote crypto-price service, but it does mean queries and any user-supplied data will be transmitted to that external service — consider privacy/trust implications.
Install Mechanism
No install spec or code files are included (instruction-only). This is low-risk because nothing is written to disk by the skill itself.
Credentials
The skill declares no required environment variables or credentials, which is proportional to the described functionality.
Persistence & Privilege
The skill is not always-enabled and does not request system-wide or persistent privileges. It does not modify other skills or system configs itself.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install pipeworx-crypto
  3. After installation, invoke the skill by name or use /pipeworx-crypto
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release
Metadata
Slug pipeworx-crypto
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Pipeworx crypto?

Cryptocurrency prices, market cap rankings, and fiat currency conversion via CoinGecko. It is an AI Agent Skill for Claude Code / OpenClaw, with 99 downloads so far.

How do I install Pipeworx crypto?

Run "/install pipeworx-crypto" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Pipeworx crypto free?

Yes, Pipeworx crypto is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Pipeworx crypto support?

Pipeworx crypto is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Pipeworx crypto?

It is built and maintained by Bruce Gutman (@brucegutman); the current version is v1.0.0.

💬 Comments