Words
liveReferenceFind synonyms, antonyms, rhymes, related words, and autocomplete via the Datamuse API
5tools
0msauth
free tier50 calls/day
Tools
find_synonymsrequired: wordFind synonyms for a word, ranked by similarity score.
Parameters
NameTypeDescription
wordreqstringThe word to find synonyms forlimitoptnumberMaximum number of results to return (default: 10)Try it
Response
find_rhymesrequired: wordFind words that rhyme with a given word, ranked by score.
Parameters
NameTypeDescription
wordreqstringThe word to find rhymes forlimitoptnumberMaximum number of results to return (default: 10)Try it
Response
autocompleterequired: prefixGet word completions from a prefix. Useful for autocomplete and spelling suggestions.
Parameters
NameTypeDescription
prefixreqstringThe prefix to autocomplete (e.g. "hel" returns "hello", "help", etc.)limitoptnumberMaximum number of results to return (default: 10)Try it
Response
find_wordsAdvanced word search. Find words matching a combination of meaning, pronunciation, and spelling constraints.
Parameters
NameTypeDescription
meaning_likeoptstringFind words with meaning similar to this phrasesounds_likeoptstringFind words that sound like this wordspelled_likeoptstringFind words spelled like this pattern (use * as wildcard, e.g. "b*ttle")limitoptnumberMaximum number of results to return (default: 10)Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/words/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'Call a tool
bash
curl -X POST https://gateway.pipeworx.io/words/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"find_synonyms","arguments":{"word": "hello world"}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("find_synonyms", {"word":"example"});ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("find synonyms, antonyms, rhymes, related words, and autocomplete via the datamuse api");