find_rhymes
Pack: words · Endpoint: https://gateway.pipeworx.io/words/mcp
Find words that rhyme with a given word, ranked by score.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
word | string | yes | The word to find rhymes for |
limit | number | no | Maximum number of results to return (default: 10) |
Example call
Arguments
{
"word": "cat"
}
curl
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":"cat"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('find_rhymes', {
"word": "cat"
});
More examples
{
"word": "mountain",
"limit": 8
}
Response shape
Always returns: word, results
| Field | Type | Description |
|---|---|---|
word | string | The word rhymes were found for |
results | array | List of rhyming words ranked by score |
Full JSON Schema
{
"type": "object",
"properties": {
"word": {
"type": "string",
"description": "The word rhymes were found for"
},
"results": {
"type": "array",
"description": "List of rhyming words ranked by score",
"items": {
"type": "object",
"properties": {
"word": {
"type": "string",
"description": "The rhyming word"
},
"score": {
"type": "number",
"description": "Rhyme match score"
}
},
"required": [
"word",
"score"
]
}
}
},
"required": [
"word",
"results"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"words": {
"url": "https://gateway.pipeworx.io/words/mcp"
}
}
}
See Getting Started for client-specific install steps.