Reference
Data source: Datamuse
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"}}}'
REST API
API Root
https://context.gnist.ai/rest/rhyme-finder/
5 endpoints available:
GET /rest/rhyme-finder/find_rhymesGET /rest/rhyme-finder/find_near_rhymesGET /rest/rhyme-finder/find_sounds_likeGET /rest/rhyme-finder/find_spelled_likeGET /rest/rhyme-finder/report_feedback
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())
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_rhymesFind perfect rhymes for a word.
| 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). |
find_near_rhymesFind near/approximate rhymes for a word.
| 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). |
find_sounds_likeFind words that sound like a given word.
| 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). |
find_spelled_likeFind words matching a spelling pattern.
| 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). |
report_feedbackReport a bug, feature request, or general feedback for this data source.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |