ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

Pipeworx Translate

Skill by b-gutman

skill-install — Terminal

Install via CLI (Recommended)

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

Translate

Machine translation between dozens of languages, plus language detection.

Three tools

translate -- Translate text from one language to another. Requires source and target language codes.

detect_language -- Identify the language of any text. Returns detected languages ranked by confidence.

list_languages -- Get all supported language codes and names.

Example: English to Spanish

curl -X POST https://gateway.pipeworx.io/translate/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"translate","arguments":{"text":"The weather is beautiful today","source":"en","target":"es"}}}'

Common language codes

CodeLanguage
enEnglish
esSpanish
frFrench
deGerman
ptPortuguese
zhChinese
jaJapanese
arArabic
ruRussian
koKorean

Use list_languages for the full set.

Add to your client

{
  "mcpServers": {
    "translate": {
      "url": "https://gateway.pipeworx.io/translate/mcp"
    }
  }
}

Powered by LibreTranslate.

Metadata

Author@b-gutman
Stars4473
Views2
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-translate": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.