install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/b-gutman/pipeworx-translate" ~/.claude/skills/clawdbot-skills-pipeworx-translate && rm -rf "$T"
manifest:
skills/b-gutman/pipeworx-translate/SKILL.mdsource content
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
| Code | Language |
|---|---|
| en | English |
| es | Spanish |
| fr | French |
| de | German |
| pt | Portuguese |
| zh | Chinese |
| ja | Japanese |
| ar | Arabic |
| ru | Russian |
| ko | Korean |
Use
list_languages for the full set.
Add to your client
{ "mcpServers": { "translate": { "url": "https://gateway.pipeworx.io/translate/mcp" } } }
Powered by LibreTranslate.