Wraps the Datamuse API to give Claude synonym and rhyme lookup without any authentication overhead. You get two tools: find_synonyms and find_rhymes, both returning scored results from Datamuse's free tier. Hosted through Pipeworx's gateway infrastructure, so there's no local server to run. Good for writing assistance workflows where you need lexical alternatives on demand. The same gateway offers an ask_pipeworx tool that interprets natural language queries if you'd rather skip direct tool calls. Part of a larger gateway setup that bundles 673+ data sources, though you can use just the words endpoint standalone.
Words MCP — wraps Datamuse API (free, no auth required)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
find_synonyms | Find synonyms for a word, ranked by similarity score. |
find_rhymes | Find words that rhyme with a given word, ranked by score. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"words": {
"url": "https://gateway.pipeworx.io/words/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Words data" })
The gateway picks the right tool and fills the arguments automatically.
MIT