Utilities
Find rhyming words with AI-powered analysis and pattern matching
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/rhyme-finder' \
-H 'Content-Type: application/json' \
-d '{"word":"Enter a word to find rhyming words...","rhymeType":"all","syllableCount":"any","context":"Provide a poem, lyric, or creative context where you plan to use the rhyme...","language":"en","includeDefinitions":true}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/rhyme-finder| Name | Type | Required | Description |
|---|---|---|---|
| word | text | Yes | — |
| rhymeType | select | No | — |
| syllableCount | select | No | — |
| context | textarea | No | — |
| language | select | No | — |
| includeDefinitions |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-rhyme-finder": {
"name": "rhyme-finder",
"description": "Find rhyming words with AI-powered analysis and pattern matching",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=rhyme-finder",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "rhyme-finder",
"arguments": {
"word": "Enter a word to find rhyming words...",
"rhymeType": "all",
"syllableCount": "any",
"context": "Provide a poem, lyric, or creative context where you plan to use the rhyme...",
"language": "en",
"includeDefinitions": true
}
}
}Questions or issues? Contact [email protected]
| checkbox |
| No |
| — |
Stream result
data: {"chunk": "data: processed content 1", "type": "stream"}
data: {"chunk": "data: processed content 2", "type": "stream"}
data: {"type": "done"}