openGyver Claude Code Plugin

March 28, 2026 · View on GitHub

This plugin makes openGyver's 49 commands and 180+ subcommands available as native Claude Code tools via MCP.

Installation

# Add the marketplace
/plugin marketplace add https://raw.githubusercontent.com/create-flow-ai/openGyver/main/plugin/marketplace.json

# Install the plugin
/plugin install opengyver

Manual Installation

# Clone and build
git clone https://github.com/create-flow-ai/openGyver.git
cd openGyver/plugin
npm install  # auto-installs openGyver binary + builds MCP server

# Add to Claude Code MCP config (~/.claude/mcp.json)
{
  "mcpServers": {
    "opengyver": {
      "command": "node",
      "args": ["/path/to/openGyver/plugin/mcp-server/dist/index.js"]
    }
  }
}

Prerequisite: openGyver Binary

The installer auto-downloads from GitHub Releases. You can also install manually:

# Homebrew
brew tap create-flow-ai/tap
brew install opengyver

# Go
go install github.com/mj/opengyver@latest

Available Tools

Once installed, Claude Code can use these tools:

ToolWhat it does
opengyver_encodeEncode/decode: base64, hex, url, jwt, morse, binary, rot13
opengyver_hashHash: sha256, md5, bcrypt, hmac, crc32, adler32
opengyver_convertConvert units (length, weight, temp, etc.) and 38 currencies
opengyver_jsonFormat, minify, validate, path query JSON
opengyver_generateGenerate passwords, API keys, UUIDs, OTP secrets
opengyver_colorColor convert (hex/rgb/hsl/cmyk), WCAG contrast, palettes
opengyver_timeTimezone convert, epoch, date math, formatting
opengyver_networkDNS, WHOIS, IP lookup, CIDR calc, URL parse
opengyver_dataformatYAML/TOML/XML/CSV to/from JSON
opengyver_validateValidate HTML, CSV, XML, YAML, TOML
opengyver_formatFormat/minify HTML, XML, CSS, SQL
opengyver_cryptoAES encrypt, RSA/SSH keygen, TLS certificates
opengyver_weatherWeather: current, forecast, historical (no API key)
opengyver_stockStock prices from 35+ global exchanges (no API key)
opengyver_mathMath expressions, percentages, GCD/LCM, factorial
opengyver_runRun any openGyver command directly

Examples

Once the plugin is active, Claude Code can:

User: "What's the SHA-256 hash of 'hello world'?"
→ Claude uses opengyver_hash(algorithm: "sha256", input: "hello world")

User: "Convert 100 USD to EUR"
→ Claude uses opengyver_convert(value: 100, from: "usd", to: "eur")

User: "What's the weather in Tokyo?"
→ Claude uses opengyver_weather(city: "Tokyo")

User: "Generate a 32-character API key with prefix sk_live_"
→ Claude uses opengyver_generate(type: "apikey", length: 32, prefix: "sk_live_")

User: "Format this SQL: select * from users where id = 1"
→ Claude uses opengyver_format(language: "sql", input: "select * from users where id = 1")