GnistAI GnistAI
Log in

Rhyme Finder

Find perfect rhymes, near rhymes, sound-alike words, and spelling pattern matches powered by the Datamuse word API.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 5 tools tools 5 5 Reference

Data source: Datamuse

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/rhyme-finder/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-rhyme-finder": {
      "url": "https://context.gnist.ai/mcp/rhyme-finder/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/rhyme-finder/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "find_rhymes", "arguments": {"word": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/rhyme-finder/

5 endpoints available:

Shell
curl "https://context.gnist.ai/rest/rhyme-finder/find_rhymes?word=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/rhyme-finder/find_rhymes",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "word": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc rhyme-finder

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (5)

find_rhymes
Find perfect rhymes for a word.
ParameterTypeRequiredDescription
wordstringrequiredWord to find perfect rhymes for (e.g. 'love', 'time', 'moon').
max_resultsanyoptionalMaximum number of results (default: 20, max: 100).
find_near_rhymes
Find near/approximate rhymes for a word.
ParameterTypeRequiredDescription
wordstringrequiredWord to find near/approximate rhymes for.
max_resultsanyoptionalMaximum number of results (default: 20, max: 100).
find_sounds_like
Find words that sound like a given word.
ParameterTypeRequiredDescription
wordstringrequiredWord or phrase to find similar-sounding words for.
max_resultsanyoptionalMaximum number of results (default: 20, max: 100).
find_spelled_like
Find words matching a spelling pattern.
ParameterTypeRequiredDescription
patternstringrequiredSpelling pattern with optional wildcards (? = single char, * = any chars). E.g. 'b?t', 'pre*'.
max_resultsanyoptionalMaximum number of results (default: 20, max: 100).
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related