Install
openclaw skills install pipeworx-wordsProvides synonyms, rhymes, related words, autocomplete, and advanced word search to enhance writing and word exploration.
openclaw skills install pipeworx-wordsA writer's toolkit: synonyms, rhymes, related words, autocomplete, and advanced word search. Powered by the Datamuse API.
Find synonyms ranked by similarity. find_synonyms("happy") returns words like joyful, cheerful, content, glad.
Perfect rhymes ranked by score. Great for poetry and songwriting.
Find words connected by different relationships:
syn -- synonymsant -- antonymsrhy -- rhymestrg -- associated/trigger wordsjja -- adjectives that describe a nounjjb -- nouns that an adjective describesWord completions from a prefix. "hel" returns hello, help, helicopter, etc.
The power tool. Combine constraints:
meaning_like -- words with similar meaning to a phrasesounds_like -- approximate pronunciation matchspelled_like -- pattern with wildcards (b*ttle finds bottle, battle, brittle)curl -X POST https://gateway.pipeworx.io/words/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"find_rhymes","arguments":{"word":"code","limit":10}}}'
curl -X POST https://gateway.pipeworx.io/words/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"find_words","arguments":{"meaning_like":"ocean","spelled_like":"s*"}}}'
{
"mcpServers": {
"words": {
"url": "https://gateway.pipeworx.io/words/mcp"
}
}
}