Data source: Datamuse
https://context.gnist.ai/mcp/rhyme-finder/
AuthenticationAll requests require a Gnist-API-Key header (or api_key query parameter).
Free tier: 100 calls/day. Get your API key.
Tools (5)
find_rhymesFind perfect rhymes for a word.
Returns words that rhyme perfectly with the given word, ranked by relevance score.
Includes syllable count when available.
| Parameter | Type | Required | Description |
|---|---|---|---|
word | string | required | Word to find perfect rhymes for (e.g. 'love', 'time', 'moon'). |
max_results | any | optional | Maximum number of results (default: 20, max: 100). |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "find_rhymes",
"arguments": {
"word": "example"
}
}
}find_near_rhymesFind near/approximate rhymes for a word.
Returns words that approximately rhyme with the given word (e.g. 'north' and 'fourth').
| Parameter | Type | Required | Description |
|---|---|---|---|
word | string | required | Word to find near/approximate rhymes for. |
max_results | any | optional | Maximum number of results (default: 20, max: 100). |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "find_near_rhymes",
"arguments": {
"word": "example"
}
}
}find_sounds_likeFind words that sound like a given word.
Useful for finding homophones, near-homophones, and phonetically similar words.
| Parameter | Type | Required | Description |
|---|---|---|---|
word | string | required | Word or phrase to find similar-sounding words for. |
max_results | any | optional | Maximum number of results (default: 20, max: 100). |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "find_sounds_like",
"arguments": {
"word": "example"
}
}
}find_spelled_likeFind words matching a spelling pattern.
Supports wildcards: ? matches a single character, * matches any number of characters.
E.g. 'b?t' matches 'bat', 'bet', 'bit', 'bot', 'but'.
| Parameter | Type | Required | Description |
|---|---|---|---|
pattern | string | required | Spelling pattern with optional wildcards (? = single char, * = any chars). E.g. 'b?t', 'pre*'. |
max_results | any | optional | Maximum number of results (default: 20, max: 100). |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "find_spelled_like",
"arguments": {
"pattern": "example"
}
}
}report_feedbackReport a bug, feature request, or general feedback for this data source.
Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.
Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "report_feedback",
"arguments": {
"feedback": "example"
}
}
}Quick Start
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"}}}'
import httpx
resp = httpx.post(
"https://context.gnist.ai/mcp/rhyme-finder/",
headers={"Gnist-API-Key": "YOUR_API_KEY", "Content-Type": "application/json"},
json={
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "find_rhymes",
"arguments": {
"word": "example"
}
}
},
)
print(resp.json())